# NOT RUN {
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="")
competing.predictors.test <- list(pred1=rnorm(30),
pred2=as.factor(sample(c(1,2),
replace=TRUE,
size=30)))
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)
sample.labels <- paste("te", as.character(1:20), sep="")
a <- superpc.train(data, type="survival")
pred <- superpc.predict(a,
data,
data.test,
threshold=.25,
n.components=1)$v.pred
superpc.rainbowplot(data,
pred,
sample.labels,
competing.predictors=competing.predictors.test)
# }
Run the code above in your browser using DataLab