Question: Use R studio to do: Preparation: Load the following data sets Package = coin, data set = glioma Package = TH.data, data set = GBSG2
Use R studio to do:
Preparation:
Load the following data sets
Package = coin, data set = glioma
Package = TH.data, data set = GBSG2
Reminder
> install.packages(coin) #downloads and makes available
> library(coin) # loads the package into R
> data(glioma) # pulls up the specific data set
> head(glioma)
> summary(glioma)
After loading the two data sets, execute the commands in this lecture three times
First, using glioma and the two groupings based on the sex column
Second, using glioma and the two groupings based on the histology column
Third, using the GBSG2 data frame from the TH.data package, using the column horTH to split the data frame into two groups
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
