ComenzarEmpieza gratis

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.

Este ejercicio forma parte del curso

Survival Analysis in R

Ver curso

Instrucciones del ejercicio

  • Read the help page of the GBSG2 dataset from the TH.data package.
  • Load the GBSG2 dataset using the data() function.
  • Look at the summary of the dataset.

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Check out the help page for this dataset
help(___, package = "___")

# Load the data
data(___, package = "___")

# Look at the summary of the dataset
summary(___)
Editar y ejecutar código