Learn R Programming

MetabolicSurv (version 1.1.1)

cvmm-class: The cvmm Class.

Description

Class of object returned by function CVMetSpecificCoxPh.

Usage

# S4 method for cvmm
show(object)

# S4 method for cvmm summary(object, which = 1)

# S4 method for cvmm,ANY plot(x, y, which = 1, ...)

Arguments

object

A CVMetSpecificCoxPh class object

which

This specify which metabolite for which estimated HR information need to be visualized. By default results of the first metabolite is used.

x

A CVMetSpecificCoxPh class object

y

missing

...

The usual extra arguments to generic functions <U+2014> see plot, plot.default

Slots

HRTrain

A 3-way array, The first dimension is the number of metabolites, the second dimension is the HR statistics for the low risk group in the train dataset (HR,1/HR LCI, UCI) while the third dimension is the number of cross validation performed.

HRTest

A 3-way array, The first dimension is the number of metabolites, the second dimension is the HR statistics for the low risk group in the test dataset (HR,1/HR LCI, UCI) while the third dimension is the number of cross validation performed.

train

The selected subjects for each CV in the train dataset

test

The selected subjects for each CV in the test dataset

n.mets

The number of metabolite used in the analysis

Ncv

The number of cross validation performed

Rdata

The Metabolite data matrix that was used for the analysis either same as Mdata or a reduced version

Details

plot signature(x = "cvmm"): Plots for CVMetSpecificCoxPh class analysis results.

Any parameters of plot.default may be passed on to this particular plot method.

See Also

CVMetSpecificCoxPh

Examples

Run this code
# NOT RUN {
## GENERATE SOME METABOLIC SURVIVAL DATA WITH PROGNOSTIC FACTORS
Data<-MSData(nPatients=100,nMet=150,Prop=0.5)

## USING THE FUNCTION
Result = CVMetSpecificCoxPh(Fold=3,Survival=Data$Survival,
Mdata=t(Data$Mdata),Censor= Data$Censor,Reduce=TRUE,
Select=150,Prognostic=Data$Prognostic,Quantile = 0.5,Ncv=3)

## GET THE CLASS OF THE OBJECT
class(Result)     # An "cvmm" Class

##  METHOD THAT CAN BE USED FOR THIS CLASS
show(Result)
summary(Result)
plot(Result)
# }

Run the code above in your browser using DataLab