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

Error in describe.aov() for model with Error term #9

Open
earcanal opened this issue Jul 29, 2019 · 2 comments
Open

Error in describe.aov() for model with Error term #9

earcanal opened this issue Jul 29, 2019 · 2 comments
Labels

Comments

@earcanal
Copy link

Model without error term :)

describe.aov(aov(yield ~  N*P*K, npk))

[1] "_F_(1, 16) = 6.16, _p_ = .025" "_F_(1, 16) = 0.27, _p_ = .608"
[3] "_F_(1, 16) = 3.10, _p_ = .097" "_F_(1, 16) = 0.69, _p_ = .418"
[5] "_F_(1, 16) = 1.08, _p_ = .314" "_F_(1, 16) = 0.02, _p_ = .902"
[7] "_F_(1, 16) = 1.20, _p_ = .289" "_F_(16, 16) = NA, _p_ =    NA"

Model with error term :(

describe.aov(aov(yield ~  N*P*K + Error(block), npk))
Error in vcov.default(mod, complete = FALSE) : 
  there is no vcov() method for models of class aovlist, listof
@earcanal earcanal changed the title Error in describe.aov() for model *with* error term Error in describe.aov() for model with Error term Jul 29, 2019
@achetverikov
Copy link
Owner

Yep, it's unsupported for now because internally describe.aov uses car::Anova. I'll try to fix this but can't promise anything very soon.

@earcanal
Copy link
Author

earcanal commented Aug 6, 2019

I subsequently discovered that papaja::apa_print() can handle this. Might be a source of inspiration. :)

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

No branches or pull requests

2 participants