summary.DNPROCreg {npROCRegression}R Documentation

Summary method for DNPROCreg objects.

Description

Summary method for DNPROCreg objects.

Usage

## S3 method for class 'DNPROCreg'
summary(object, ...)

Arguments

object

an object of class DNPROCreg as produced by DNPROCreg()

.

...

further arguments passed to or from other methods. Not yet implemented.

Author(s)

Maria Xose Rodriguez - Alvarez and Javier Roca-Pardinas

See Also

See Also DNPROCreg, plot.DNPROCreg.

Examples

data(endosim)
# Fit a model including the interaction between age and gender.
m0 <- DNPROCreg(marker = "bmi", formula.h = "~ gender + s(age) + s(age, by = gender)", 
				formula.ROC = "~ gender + s(age) + s(age, by = gender)", 
				group = "idf_status", 
				tag.healthy = 0, 
				data = endosim, 
				control = list(card.P=50, kbin=30, step.p=0.02), 
				ci.fit = FALSE, 
				test.partial = NULL,
				newdata = NULL)
summary(m0)				
plot(m0)

[Package npROCRegression version 1.0-7 Index]