美文网首页TCGA数据分析
rbsurv方法筛选基因

rbsurv方法筛选基因

作者: 一路向前_莫问前程_前程似锦 | 来源:发表于2018-09-01 20:49 被阅读73次
     try http:// if https:// URLs are not supported
    source("https://bioconductor.org/biocLite.R")
    biocLite("rbsurv")
    library(rbsurv)
    data(gliomaSet)
    gliomaSet
    x <- exprs(gliomaSet)
    x <- log2(x)
    time <- gliomaSet$Time
    status <- gliomaSet$Status
    

    x是行代表基因,列代表样本

    image.png

    ###################################################

    code chunk number 2: rbsurv.Rnw:200-201

    ###################################################
    fit <- rbsurv(time=time, status=status, x=x, method="efron", max.n.genes=20)

    ###################################################

    code chunk number 3: rbsurv.Rnw:213-214

    ###################################################
    fit$model

    相关文章

      网友评论

        本文标题:rbsurv方法筛选基因

        本文链接:https://www.haomeiwen.com/subject/nqouwftx.html