How to learn R programming
If you've wanted to learn R programming but didn't know where to start there is a great R packaged called Swirl that teaches you...
How to generate random numbers and set seeds in R
Lets learn how to generate random numbers in R. There might be occasions where you'd want to draw random numbers but want to be...
How to: Create column names in R / R Studio
If you want to create your own headers there is an easy way to do that. You can use the optional col.names argument to...
How to: Import NFL Data into R / R Studio – HTML import
If you want to start running some cool analysis on NFL data (or any other sport for that matter) there are a number of...
Learning R plot with NFL Data wins vs. yards allowed
R plot data doesn't need to be boring. Being an NFL football fan has made it a lot more interesting to create lessons on...
Histogram in R: How to example using NFL QB data
A histogram in R is very useful to use when you want to see more detail on all of the data within your data...
How to merge data frames in R
You will find occasions when you'll need to merge data from two different data frames. In order to merge two datasets you are required...
How to run a cross table in R
Running a cross table, or cross tab, in R is useful for a number of applications for data research. In the example below, we...
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 0 and the largest...
How to Get, Set or Change your working directory in R
If you are just starting out in R it'll be important to know how to determine your working directory or how to find the...