The globalfitSummary-class is the class to handle the
entries of the class
globalfit
and assemble them together
for summary.
Arguments
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
# NOT RUN { data <- rnorm(n=100, mean=10, sd= 1)
r <- globalfit(data, cores= if (interactive()) NULLelse1,
packages="stats", append_packages=FALSE)
summary(r)
# }