| fitLogisticDist-class {optimalThreshold} | R Documentation |
An S4 class to fit a logistic distribution on a vector of marker values.
Description
This class allows to fit a logistic distribution on the marker values x.
Details
This class is automatically created when the user applies the fit function with the argument distr="logis". You never have to create manually this class, it is created internally.
Slots
xThis slot takes in argument the marker values. Numeric argument.
nLength of x vector (including NA values). Numeric argument.
iniThis slot is a list of initial values passed to the MCMC algorithm. List argument.
thinThis slot is a strictly positive integer value that specifies the 'thin' applied to the MCMC algorithm.
burninThis slot is a positive integer value that specifies the length of the burnin period in the MCMC algorithm.
modelThis slot is a character string that specifies the model passed to the JAGS software to perform the MCMC algorithm.
mcmcThis slot allows the main function to k,now whether an MCMC algorithm must be performed to sample the distribution parameters from their posterior distribution.
See Also
fit for more details on how to fit a logistic distribution.