BRCAOV.survInfo: Breast and Ovarian Cancers Survival Information

Description Usage Format Source Examples

Description

Breat and Ovarian cancers survival information from the RTCGA.clinical R/Bioconductor package.http://rtcga.github.io/RTCGA/.

Usage

1
data("BRCAOV.survInfo")

Format

A data frame with 1674 rows and 4 columns.

1
2
3
4
5
6
 - times: follow-up time;
 - bcr_patient_barcode: Patient bar code;
 - patient.vital_status = survival status. 0 = alive, 1 = dead;
 - admin.disease_code: disease code. brca = breast cancer, ov = ovarian
 cancer.
 

Source

From the RTCGA.clinical R/Bioconductor package. The data is generated as follow:

1
2
3
4
5
6
7
8
# Installing RTCGA.clinical
source("https://bioconductor.org/biocLite.R")
biocLite("RTCGA.clinical")

# Generating the BRCAOV survival information
library(RTCGA.clinical)
survivalTCGA(BRCA.clinical, OV.clinical,
extract.cols = "admin.disease_code") -> BRCAOV.survInfo

Examples

1
2
3
4
5
data(BRCAOV.survInfo)
library(survival)
fit <- survfit(Surv(times, patient.vital_status) ~ admin.disease_code,
           data = BRCAOV.survInfo)
ggsurvplot(fit, data = BRCAOV.survInfo, risk.table = TRUE)

Example output

Loading required package: ggplot2
Loading required package: ggpubr
Loading required package: magrittr

survminer documentation built on March 9, 2021, 5:07 p.m.