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
I()
I() in the LHS can lead to an error. See below reproducible example
data(Produc) fm1 <- diff(log(gsp)) ~ log(pcap) + log(pc) + log(emp) fm2 <- I(diff(log(gsp))) ~ log(pcap) + log(pc) + log(emp) plm(fm1, Produc) # runs plm(fm2, Produc) # errors ## plm version 2.2-5 # Error in is.pbalanced.default(x) : # argument "y" is missing, with no default ## plm version 2.6-0 # Error in fwithin.default(x, g = effect, w = NULL, na.rm = na.rm) : # length(g) must match nrow(X)
The text was updated successfully, but these errors were encountered:
da97eb1
fixed in commit 6d9ea4a fixed in 2.6-1 on CRAN as of 2022-03-05
Sorry, something went wrong.
No branches or pull requests
I()
in the LHS can lead to an error. See below reproducible exampleThe text was updated successfully, but these errors were encountered: