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
format_parameters()
library(plm) data("EmplUK", package = "plm") ## Arellano and Bond (1991), table 4 col. b z1 <- pgmm(log(emp) ~ lag(log(emp), 1:2) + lag(log(wage), 0:1) + log(capital) + lag(log(output), 0:1) | lag(log(emp), 2:99), data = EmplUK, effect = "twoways", model = "twosteps") parameters::format_parameters(z1) #> lag(log(emp), 1:2)1 lag(log(emp), 1:2)2 #> "lag(emp [lag(log, 1] * 2)1" "lag(emp [lag(log, 1] * 2)2" #> lag(log(wage), 0:1)0 lag(log(wage), 0:1)1 #> "lag(wage [lag(log, 0] * 1)0" "lag(wage [lag(log, 0] * 1)1" #> log(capital) lag(log(output), 0:1)0 #> "capital [log]" "lag(output [lag(log, 0] * 1)0" #> lag(log(output), 0:1)1 1979 #> "lag(output [lag(log, 0] * 1)1" "1979" #> 1980 1981 #> "1980" "1981" #> 1982 1983 #> "1982" "1983" #> 1984 #> "1984"
Created on 2021-05-26 by the reprex package (v2.0.0)
The text was updated successfully, but these errors were encountered:
the "formatting" is messed up here, due to the special transformation of parameters.
Sorry, something went wrong.
(see #501 )
No branches or pull requests
Created on 2021-05-26 by the reprex package (v2.0.0)
The text was updated successfully, but these errors were encountered: