print.mcca.rsq {mcca} | R Documentation |
An S3 method for the print generic. It is designed for a quick look at rsq values.
## S3 method for class 'mcca.rsq' print(x, ...)
x |
object of class 'mcca.rsq'. |
... |
further arguments to 'print.default'. |
An object of class "mcca.rsq" is a list containing at least the following components:
call |
the matched call. |
measure |
the value of measure. |
table |
the category-specific value of measure. |
Ming Gao: gaoming@umich.edu
Jialiang Li: stalj@nus.edu.sg
Li, J., Jiang, B. and Fine, J. P. (2013). Multicategory reclassification statistics for assessing Improvements in diagnostic accuracy. Biostatistics. 14(2): 382-394.
Li, J., Jiang, B., and Fine, J. P. (2013). Letter to Editor: Response. Biostatistics. 14(4): 809-810.
data = iris[, 1:4] label = iris[, 5] rsq_object=rsq(y = label, d = data, method = "multinom",maxit = 1000,MaxNWts = 2000,trace=FALSE) print(rsq_object)