VanAllen_Clinical.Rd
Dataset from Van Allen EM et al., Science 2015 containing the detailed clinical and genome characteristics of the indivitual patients enrolled into the study. The datase includes wherether the patients were classified as either responder or non-responder.
VanAllen_Clinical
A data frame with 110 rows and 2 variables
Patient identifier
Clinical response to immunotherapy; responder or nonresponder
provided as supplementary file S2 by Van Allen EM et al. in "Genomic correlates of response to CTLA-4 blockade in metastatic melanoma" Science 2015 (PMID: 26359337). Only clinical response and patient variable are saved here
# load supplementary file from VanAllen_Clinical <- read.table("TableS2_Revised.xlsx")
VanAllen_Clinical dplyr::rename("Sample" = patient) dplyr::mutate(ClinicalResponse = ifelse(VanAllen_Clinical$group == "response" , "responder", "nonresponder")) dplyr::select(Sample, ClinicalResponse)