kapmeier_scores
#' Function that creates a Kaplan Meier comparing first and last tertile of a metabolic score
kapmeier_scores(predictors, pheno, score, Eventname = "Event")
predictors
: The data.frame containing the predictorspheno
: The data.frame containing the phenotypesscore
: a character string indicating which predictor to useEventname
: a character string with the name of the event to print on the plotplotly with a Kaplan Meier comparing first and last tertile of a metabolic score
require(MiMIR) require(plotly) require(survminer) require(ggfortify) require(ggplot2) #load the dataset metabolic_measures <- synthetic_metabolic_dataset phenotypes <- synthetic_phenotypic_dataset #Compute the mortality score mortScore<-comp.mort_score(metabolic_measures,quiet=TRUE) #Plot a Kaplan Meier kapmeier_scores(predictors=mortScore, pheno=phenotypes, score="mortScore")
Useful links