superpc.plot.lrtest {superpc}R Documentation

Plot likelhiood ratio test statistics

Description

Plot likelhiood ratio test statistics from output of superpc.predict

Usage

    superpc.plot.lrtest(object.lrtestcurv, 
                        call.win.metafile=FALSE)

Arguments

object.lrtestcurv

Output from superpc.lrtest.curv

call.win.metafile

For use by PAM Excel interface

Author(s)

Maintainer: "Jean-Eudes Dazard, Ph.D."

References

Examples

set.seed(332)

#generate some data
x <- matrix(rnorm(50*30), ncol=30)
y <- 10 + svd(x[1:50,])$v[,1] + .1*rnorm(30)
ytest <- 10 + svd(x[1:50,])$v[,1] + .1*rnorm(30)
censoring.status <- sample(c(rep(1,20), rep(0,10)))
censoring.status.test <- sample(c(rep(1,20), rep(0,10)))

featurenames <- paste("feature", as.character(1:50), sep="")
data <- list(x=x, 
             y=y, 
             censoring.status=censoring.status, 
             featurenames=featurenames)
data.test <- list(x=x, 
                  y=ytest, 
                  censoring.status=censoring.status.test, 
                  featurenames=featurenames)

a <- superpc.train(data, type="survival")
bb <- superpc.lrtest.curv(a, 
                          data, 
                          data.test)
superpc.plot.lrtest(bb)

[Package superpc version 1.12 Index]