View source: R/visualization.R
survcell | R Documentation |
Function 'survcell' draws Kaplan–Meier curves for survival in the above-median and below-median groups for cell risk score. The cell risk score is calaulated by the weighted mean of cells driven by a gene mutation, where the weight of cells is estimated by the "Univariate" or "Multivariate" cox.
survcell(
gene,
mutcell,
cellmatrix,
surv,
method = "Multivariate",
legend.title = "Strata",
legend.labs = c("group=0", "group=1"),
palette = c("#E7B800", "#2E9FDF"),
color = NULL,
pval = TRUE,
title = NULL,
ggtheme = theme_survminer()
)
gene |
Somatic mutant gene name |
mutcell |
The result of 'mutcorcell' function |
cellmatrix |
Cell abundance matrix |
surv |
Surv is the survival data, the first column is the sample name, the second column is the survival time, and the third is the survival event. |
method |
Method must be one of "Univariate" and "Multivariate". The coefficient of cells for risk score are estimated by "Univariate" or "Multivariate" cox proportional risk regression model on cell abundance matrix and overall survival data.. |
legend.title |
legend title. |
legend.labs |
character vector specifying legend labels. Used to replace the names of the strata from the fit. Should be given in the same order as those strata. |
palette |
the color palette to be used. Allowed values include "hue" for the default hue color scale; "grey" for grey color palettes; brewer palettes e.g. "RdBu", "Blues", ...; or custom color palette e.g. c("blue", "red"); and scientific journal palettes from ggsci R package, e.g.: "npg", "aaas", "lancet", "jco", "ucscgb", "uchicago", "simpsons" and "rickandmorty". See details section for more information. Can be also a numeric vector of length(groups); in this case a basic color palette is created using the function palette. |
color |
color to be used for the survival curves.If the number of strata/group (n.strata) = 1, the expected value is the color name. For example color = "blue".If n.strata > 1, the expected value is the grouping variable name. By default, survival curves are colored by strata using the argument color = "strata", but you can also color survival curves by any other grouping variables used to fit the survival curves. In this case, it's possible to specify a custom color palette by using the argument palette. |
pval |
logical value, a numeric or a string. If logical and TRUE, the p-value is added on the plot. If numeric, than the computet p-value is substituted with the one passed with this parameter. If character, then the customized string appears on the plot. |
title |
the title of the survival curve |
ggtheme |
function, ggplot2 theme name. Default value is theme_survminer. Allowed values include ggplot2 official themes: see theme. |
Kaplan–Meier curves
# get the result of `mutcorcell` function.
mutcell<-GetExampleData("mutcell")
# get cell abundance matrix which is the result of exp2cell function
cellmatrix<-GetExampleData("cellmatrix")
# get survival data
surv<-GetExampleData("surv")
#draw Kaplan–Meier curves
survcell(gene ="TP53",mutcell=mutcell,cellmatrix=cellmatrix,surv=surv)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.