View source: R/Overdispersion.R
Overdispersion | R Documentation |
After fitting the distribution using this function we can extract the overdispersion value. This function works for fitTriBin, fitBetaBin, fitKumBin, fitGHGBB and fitMcGBB for Binomial Mixture Distributions. Similarly, Alternate Binomial Distributions also support this function for fitAddBin,fitBetaCorrBin, fitCOMPBin, fitCorrBin and fitMultiBin.
Overdispersion(object)
object |
An object from one of the classes of fitTB,fitBB,fitKB,fitGB,fitMB. |
Note : Only objects from classes of above mentioned classes can be used.
The output of Overdispersion
gives a single value which is the
overdispersion.
No.D.D=0:7 #assigning the random variables
Obs.fre.1=c(47,54,43,40,40,41,39,95) #assigning the corresponding frequencies
#estimating mode value for given data
results<-EstMLETriBin(No.D.D,Obs.fre.1)
results
mode<-results$mode
#fitting the Triangular Bionomial distribution for estimated parameters
TriBin<-fitTriBin(No.D.D,Obs.fre.1,mode)
TriBin
#extracting the overdispersion
Overdispersion(TriBin)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.