Description Usage Arguments Value Author(s) Examples
View source: R/fit_dist_gamma.R
This function fits offspring data to a special case of the gamma distribution, in which zero values of offspring are excluded and all values are rounded to a whole number, and tests the goodness of fit using the chi-squared test.
1 |
dist |
a numeric vector of data values for number of offspring per dam. |
estimate |
Shape and rate parameters estimated from the supplied distribution. |
sd |
Standard deviation of the shape and rate estimates. |
vcov |
Variance/covariance matrix of the shape and rate estimates. |
loglik |
the log-likelihood of the shape and rate estimates. |
n |
The number of observations. |
statistic |
The chi-squared test statistic. |
parameter |
Degrees of freedom for the chi-squared test. |
p.value |
P-value for the chi-squared test. |
data_gamma |
Vector of values generated from a special case of the gamma distribution. |
M. Catherine Duryea, Andrew D. Kern, Robert M. Cox, and Ryan Calsbeek
1 2 3 4 5 6 7 8 | #Fit the Shape and Rate parameters to a distribution of offspring.
#Test the goodness of fit.
data(fungus)
fungus_fit<-fit_dist_gamma(fungus$Total_Offspring)
fungus_fit$fit_gamma
fungus_fit$chi_gamma
hist(fungus_fit$data_gamma)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.