Gene expression data (text file: matrix with 7399 rows, 240 columns)
Survival times (text file: vector of length 240)
Censoring status (text file: vector of length 240)
Indices of 160 patients forming the training set in Bair et al 2004 Tech report. (text file: vector of length 160)

Save the data in files staudt.x, staudt.tim and staudt.status and then read into R via the commands:


staudt.x<- matrix(scan("staudt.x"),ncol=240,byrow=TRUE)
staudt.tim<-scan("staudt.tim")
staudt.status<-scan("staudt.status")
staudt.train.indices<-scan("staudt.train.indices")