We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Perhaps the intention is to have people use lm() not aov() but perhaps the error message can be updated.
lm()
aov()
library(easystats) #> # Attaching packages: easystats 0.6.0.9 #> ✔ bayestestR 0.13.1 ✔ correlation 0.8.4 #> ✔ datawizard 0.7.1.6 ✔ effectsize 0.8.3.11 #> ✔ insight 0.19.1.12 ✔ modelbased 0.8.6.3 #> ✔ performance 0.10.3.3 ✔ parameters 0.21.0.2 #> ✔ report 0.5.7.4 ✔ see 0.7.5.5 x <- aov(Sepal.Length ~ Species, data = iris) mp <- model_parameters(x) plot(mp) #> Error in `$<-.data.frame`(`*tmp*`, "Estimate_CI", value = character(0)): replacement has 0 rows, data has 2 y <- lm(Sepal.Length ~ Species, data = iris) mp2 <- model_parameters(y) plot(mp2)
Created on 2023-05-21 with reprex v2.0.2
The text was updated successfully, but these errors were encountered:
We should "disable" plot for Anova objects, as they probably don't contain any useful information to plot?
Sorry, something went wrong.
We could also change the behavior of model_parameters() for them to show the same results as lm?
And maybe make a new function for generating ANOVA tables?
No branches or pull requests
Perhaps the intention is to have people use
lm()
notaov()
but perhaps the error message can be updated.Created on 2023-05-21 with reprex v2.0.2
The text was updated successfully, but these errors were encountered: