powered by
Compute (and print) a summary of a vlmc object which is typically the result of vlmc(..).
vlmc
vlmc(..)
# S3 method for vlmc summary(object, ...) # S3 method for summary.vlmc print(x, digits = getOption("digits"), vvec.printing = FALSE, ...)
summary.vlmc() returns an object of class "summary.vlmc"
summary.vlmc()
"summary.vlmc"
for which there's a print method. It is basically a list containing all of object, plus additionally
object
the symmetric contingency table of data vs fitted.
statistics of Markov chain depth along the data; currently just summary(predict(object, type="depth")).
summary(predict(object, type="depth"))
the \(R^2\) statistic, i.e. the percentage (in [0,1]) of correctly predicted data.
an R object of class vlmc.
an R object of class summary.vlmc.
summary.vlmc
integer giving the number of significant digits for printing numbers.
logical indicating if the vvec component should be printed recursively via prt.vvec().
vvec
prt.vvec()
potentially further arguments [Generic].
vlmc, draw.vlmc.
draw.vlmc
data(bnrf1) vb <- vlmc(bnrf1EB) svb <- summary(vb) svb try(## since it currently fails (".. nested too deeply") -- FIXME -- ! print(svb, vvec.print = TRUE) )
Run the code above in your browser using DataLab