STATISTICS: Multivariate analysis with Bull Riders DAY 3

 

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”

Statistics Crash Course Day 2

 

library(help="datasets")

t-test

A t-test is a statistic that checks if two means are reliably different from each other

x <- c(1.2,3.4,1.3,-2.1,5.6,2.3,3.2,2.4,2.1,1.8,1.7,2.2)
y <- c(2.4,5.7,2.0,-3,13,5,6.2,4.8,4.2,3.5,3.7,5.2)
t.test(x,y)

 Continue reading "Statistics Crash Course Day 2"

Statistics Crash Course Day 1

Well this was the class that i took some year back, a three day R studio Tutorial classes.

- Intro To R
- How to use Rstudio
- Mean
- Median
- Mode
- Range
- Quartile Deviation
- Standard Deviation

To View the Datasets available by default

library(help="datasets")

So Basically We are using a Dataset Cars which is by default present in the RStudio which basically consists of 50 rows:

Continue reading “Statistics Crash Course Day 1”