Skip to content

Odds ratios for clm() and alike from package ordinal #1161

@strengejacke

Description

@strengejacke

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

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions