Introducing the GBSG2 dataset
In this course, we will frequently use the GBSG2 dataset. This dataset contains information on breast cancer patients and their survival.
In this exercise, we will take a first look at it in R.
The TH.data package is loaded for you in this exercise.
Diese Übung ist Teil des Kurses
Survival Analysis in R
Anleitung zur Übung
- Read the help page of the
GBSG2dataset from theTH.datapackage. - Load the
GBSG2dataset using thedata()function. - Look at the summary of the dataset.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Check out the help page for this dataset
help(___, package = "___")
# Load the data
data(___, package = "___")
# Look at the summary of the dataset
summary(___)