
Serving sizes collected in a French survey, for ground beef patties consumed by children under 5 years old.
data(groundbeef)
groundbeef
is a data frame with 1 column (serving: serving sizes in grams)
# NOT RUN {
# (1) load of data
#
data(groundbeef)
# (2) description and plot of data
#
serving <- groundbeef$serving
descdist(serving)
plotdist(serving)
# (3) fit of a Weibull distribution to data
#
fitW <- fitdist(serving,"weibull")
summary(fitW)
plot(fitW)
gofstat(fitW)
# }
Run the code above in your browser using DataLab