summary.parsec {parsec}R Documentation

Summary of outputs of the evaluation function.

Description

S3 method of function summary reporting main information for an object of class parsec, obtained from function evaluation. In particular, the function computes a table showing, for each profile:

If the number of profiles is higher than ten, the shown table gets cut, but the method returns a data.frame providing the complete output.

Usage

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

Arguments

object

an object of S3 class parsec, output of the evaluation function.

...

added for consistency with the generic method.

See Also

evaluation

Examples

profiles <- var2prof(varlen = c(3, 2, 4))
threshold <- c("311", "112")

res <- evaluation(profiles, threshold, nit = 10^3)

sm <- summary(res)
summary(sm)

[Package parsec version 1.2.7 Index]