Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

terms order wrong #401

Closed
xieguagua opened this issue Aug 18, 2018 · 3 comments
Closed

terms order wrong #401

xieguagua opened this issue Aug 18, 2018 · 3 comments

Comments

@xieguagua
Copy link

library(sjPlot)
library(MASS)
house.plr <- polr(Sat ~ Infl + Type + Cont, weights = Freq, data = housing)
house.plr
summary(house.plr, digits = 3)

slightly worse fit from

plot_model(
house.plr
)

image

the Infl + Type + Cont chanaged to Cont+Infl+Type
:)

@strengejacke
Copy link
Owner

Terms are sorted in alphabetical order by default. You can either sort by estimates (sort.est = TRUE) or define an own order (argument order.terms).

@albertostefanelli
Copy link

Is it possible to have an option that does not sort the estimates in alphabetical order or that follow the order of the fitted model? Would make like easier

@strengejacke
Copy link
Owner

should work now with the latest commit.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants