globalfitSummary-class: Class "globalfitSummary"

Description Objects from the Class Slots Methods Author(s) See Also Examples

Description

The globalfitSummary-class is the class to handle the entries of the class globalfit and assemble them together for summary.

Objects from the Class

Objects can be created by calls of the form new("globalfitSummary", data, continuity, method, fits, ic). More comfortably, you may use the method summary on an object of class globalfit - its result is a globalfitSummary-object.

Slots

call

the call, which created the globalfit, where this object originated.

data

vector of data points

continuity

logical; if TRUE, indicates that the data points come from a continuous distribution; if FALSE, indicates that they come from a discrete distribution

method

character; the method used for the fit.

fits

data frame; sorted by the ic selected in summary or the constructor call, with the columns: family, package and ic.

ic

character; indicates by which crietrion fits was sorted.

Methods

show

signature(x = "globalfitSummary"): display the object

print

signature(x = "globalfitSummary"): calls show

Author(s)

Moritz Kern

See Also

globalfitSummary
globalfit
optimParams

Examples

1
2
3
4
  data <- rnorm(n=100, mean=10, sd= 1)
  r <- globalfit(data, cores= if (interactive()) NULL else 1,
                 packages="stats", append_packages=FALSE)
  summary(r)

DistributionFitR documentation built on March 13, 2020, 3:29 a.m.