TCGA_生存分析

#R 生存曲线
setwd("D:/TCGA_ProstateCancer_Survival/Survival_analysis")
library(survival)
library(survminer)
rt <- read.table("survivalInput.txt",header=T,sep="\t")
rt$futime <- rt$futime/365 
a <- (rt$expression < median(rt$expression))
diff <- survdiff(Surv(futime,fustat)~a,data=rt) 
pValue <- 1 - pchisq(diff$chisq,df=1)
pValue <- round(pValue,5)
fit <- survfit(Surv(futime,fustat) ~ a,data=rt) 
summary(fit) 
ggsurvplot(fit,pval=TRUE,linetype="solid",palette=c("red","blue"),legend.title="",legend=c(0.95,0.95),legend.labs=c("AR High-expression","AR low-expression"),conf.int=T,conf.int.style="ribbon",conf.int.alpha=0.1,font.legend=c(6))
ggsave(file="a.pdf",width = 10, height = 10)
此条目发表在TCGA分类目录。将固定链接加入收藏夹。

发表评论

邮箱地址不会被公开。 必填项已用*标注

To create code blocks or other preformatted text, indent by four spaces:

    This will be displayed in a monospaced font. The first four 
    spaces will be stripped off, but all other whitespace
    will be preserved.
    
    Markdown is turned off in code blocks:
     [This is not a link](http://example.com)

To create not a block, but an inline code span, use backticks:

Here is some inline `code`.

For more help see http://daringfireball.net/projects/markdown/syntax

Protected with IP Blacklist CloudIP Blacklist Cloud