Reputation: 644
I searched everywhere but I didn't find what I want, that is why I as the question here. Does anybody know of a function in R
which allows to estimate ordered probit/logit model with random coefficients
.
The only mixed effect model I found was clmm
of the ordinal
package but it only provides random intercepts. I am grateful for every hint!
Upvotes: 2
Views: 1719
Reputation: 1058
One way you can do ordered logistic regression is to expand your data. For instance, if you have:
let | cat ----|----- a | cat3 b | cat5
You can expand that to:
let pass level a T aboveCat0 a T aboveCat1 a T aboveCat2 a F aboveCat3 a F aboveCat4 b T aboveCat0 b T aboveCat1 b T aboveCat2 b T aboveCat3 b T aboveCat4
...and then use "level" as a fixed effect.
Header | Header ------ | ------ Cell | Cell
Upvotes: 0
Reputation: 644
Thanks for taking a look at my question! The answer: The MCMCglmm
package provides a bayesian version of an ordinal regression with a probit link function.
Upvotes: 1