Ovarian
datasetThe ovarian
dataset is included in the survival
package
ovarian
Dataset:ovarian
DatasetThe dataset consists of 26 observations and 6 variables. It provides information on the survival time and status of patients with advanced ovarian cancer who were treated with either single-agent or combination chemotherapy. The dataset also includes important prognostic factors such as age, residual disease status, and ECOG performance status.
Here is a basic example of how to load and inspect the ovarian
dataset:
# Load the necessary package
library(survival)
# Load the ovarian dataset
data(ovarian)
# Inspect the first few rows of the dataset
head(ovarian)
This will display the first few rows of the dataset, showing the values for survival time, censoring status, age, residual disease status, treatment type, and ECOG performance status.
For more detailed information about the ovarian
dataset and its use in survival analysis, refer to the survival package documentation.