Displaying 1 result from an estimated 1 matches for "postprob1".
Did you mean:
postprob
2010 Feb 24
0
Extracting individual parameter estimates from mmlcr
...oglikelihood
mmlcr1$BIC
And I can identify individual parameter estimates such as posterior
probabilities of
belonging to specific classes, specific data points, corresponding fitted
and residual values
as follows:
#posterior probability of belonging to class 1
summary.mmlcr(mmlcr1)[7]$post.prob$PostProb1
#first data value
summary.mmlcr(mmlcr1)$components[[1]]$data[1,]$PDS
#first fitted value
summary.mmlcr(mmlcr1)$components[[1]]$fitted[1]
#first residual value
summary.mmlcr(mmlcr1)$components[[1]]$residual[1]
BUT I am unable to figure out how to extract individual parameter estimates
such as in...