Learn R Programming

plsRcox (version 1.0)

print.summary.plsRcoxmodel: Print method for summaries of plsRcox models

Description

This function provides a print method for the class "summary.plsRcoxmodel"

Usage

## S3 method for class 'summary.plsRcoxmodel':
print(x, \dots)

Arguments

x
an object of the class "summary.plsRcoxmodel"
...
not used

Value

  • languagecall of the model

References

Fr�d�ric{Fr'ed'eric} Bertrand, Myriam Maumy-Bertrand et Nicolas Meyer (2011). R�gression{R'egression} B�ta{B^eta} PLS. Preprint.

See Also

print and summary

Examples

Run this code
data(micro.censure)
data(Xmicro.censure_compl_imp)

X_train_micro <- apply((as.matrix(Xmicro.censure_compl_imp)),FUN="as.numeric",MARGIN=2)[1:80,]
Y_train_micro <- micro.censure$survyear[1:80]
C_train_micro <- micro.censure$DC[1:80]

modpls <- plsRcox(X_train_micro,time=Y_train_micro,event=C_train_micro,nt=3)
print(summary(modpls))

Run the code above in your browser using DataLab