How to use the quantile function in R
The quantile function in R displays sample quantiles corresponding to given probabilities. The smallest observation corresponds to a probability of…
The quantile function in R displays sample quantiles corresponding to given probabilities. The smallest observation corresponds to a probability of…
If you are just starting out in R it’ll be important to know how to determine your working directory or…
Reading a table in R is quite straight-forward. We are going to read a table from the web and also…
There are a few different ways to import data into R. We will cover two ways in this post, downloading…
We will walk you through how to run random sampling in R, but first lets discuss what is random sampling…
Lets learn how to generate random numbers in R. There might be occasions where you’d want to draw random numbers…
What is str? Str is a compact way to display the structure of an R object. This allows you to…
The lapply function in R applies a function to elements in a list or a vector and returns the results…
Previously we showed you how to write a loop in R. Very often it’s a better idea to use the…
Just apply! What does that even mean? Well, some R programmers will tell you to use the apply function (lapply…