print.cox.ridge: Print a 'cox.ridge' object.

Description Usage Arguments See Also Examples

Description

Information describing the fitted cox.ridge object.

Usage

1
2
## S3 method for class 'cox.ridge'
print(x,...)

Arguments

x

a cox.ridge object.

...

optional arguments passed to print.default; see the documentation on that method function.

See Also

cox.ridge.

Examples

1
2
3
4
5
6
7
data(ova)
attach(ova)
X <- cbind(karn,diam,figo)
X <- apply(X,2,function(x){(x-mean(x))/sqrt(var(x))})#standardize covariates
fit <- cox.ridge(Surv(time,death)~X,lambda=1,lambdaFixed=TRUE)
fit ##regression coefficients correspond to the standardized covariates
          

CoxRidge documentation built on May 1, 2019, 8:48 p.m.