Learn R Programming

parsec (version 1.1.1)

plot.parsec: Plot outouts of PARSEC function evaluation.

Description

Different representation of the results obtained by the evaluation function.

Usage

## S3 method for class 'parsec':
plot(
    x,
    which = c("Hasse", "threshold", "identification", "rank", "gap"),
    ask = dev.interactive(),
    shape = c("square", "circle", "equispaced"),
    ...
)

Arguments

x
an object of S3 class parsec, output of the evaluation function.
which
the names of the graphs to be plotted (all by default), the user can choose between
  • Hasse, the Hasse diagram of the poset, seeplot.coverfor details,
threshold

item

  • ask
  • shape
  • ...

See Also

evaluation, plot.cover

Examples

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

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

plot(res)

Run the code above in your browser using DataLab