-
-
Notifications
You must be signed in to change notification settings - Fork 40
Closed
Labels
What's your opinion 🙉Collectively discuss somethingCollectively discuss something
Description
Only the intercept (i.e. thresholds) are exponentiated and the location and scale parameters are not. I wonder whether it should be exactly the other way round?
library(ordinal)
library(parameters)
fm1 <- clm(rating ~ temp + contact + judge + temp * contact, data=wine, link="logit")
summary(fm1)
parameters::model_parameters(fm1)
parameters::model_parameters(fm1, exponentiate=TRUE)
fm2 <- clm2(rating ~ temp + contact + judge + temp * contact, data=wine, link="logistic")
summary(fm2)
parameters::model_parameters(fm2)
parameters::model_parameters(fm2, exponentiate=TRUE)
fm3 <- clm(rating ~ temp + contact + judge + temp * contact, scale=~judge, data=wine, link="logit")
summary(fm3)
parameters::model_parameters(fm3)
parameters::model_parameters(fm3, exponentiate=TRUE)Metadata
Metadata
Assignees
Labels
What's your opinion 🙉Collectively discuss somethingCollectively discuss something