summary.kcurves {clustcurv} | R Documentation |
Summarizing fits of kcurves
class produced by ksurvcurves
and
kregcurves
Description
Takes a kcurves object and produces various useful summaries from it.
Usage
## S3 method for class 'kcurves'
summary(object, ...)
Arguments
object |
a kcurves object as producted by |
... |
additional arguments. |
Details
print.kcurves
tries to be smart about summary.kcurves
.
Value
summary.kcurves
computes and returns a list of summary
information for a kcurves
object.
levels |
Levels of the factor. |
cluster |
A vector containing the assignment of each factor's level to its group. |
Author(s)
Nora M. Villanueva and Marta Sestelo.
Examples
library(clustcurv)
library(survival)
data(veteran)
# Survival: 2 groups k-means
s2 <- ksurvcurves(time = veteran$time, status = veteran$status,
x = veteran$celltype, k = 2, algorithm = "kmeans")
summary(s2)
# Regression: 2 groups k-means
r2 <- kregcurves(y = barnacle5$DW, x = barnacle5$RC,
z = barnacle5$F, k = 2, algorithm = "kmeans")
summary(r2)
[Package clustcurv version 2.0.2 Index]