Multivariate analysis with Bull Riders
This is the final class of a three day crash course i’ve collected this material from edX where you can get the basic foundation of data analysis. This short snippet will help you get enough practicality of statistical implementation of correlation. Let’s go through it.
Look into Data
The data can be found here: https://courses.edx.org/c4x/UTAustinX/UT.7.01x/asset/BullRiders.csv
lets us check the data
library(SDSFoundations)
bull<-BullRiders
head(bull)
Continue reading “STATISTICS: Multivariate analysis with Bull Riders DAY 3”