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
Greetings:
Thank you for your work on IFE software. I mostly use Stata for analyses so my R skills are rather basic. I have no experience with Julia.
I am unable to run the FixedEffectInteract() example and also had to modify the setup to get the FixedEffects() example to work.
FixedEffectInteract()
FixedEffects()
(1) For setup, I had to manually add the following before calling FixedEffect_setup() to make it work IFE_examples.txt
FixedEffect_setup()
:
JuliaCall::julia_command('import Pkg; Pkg.add("StatsModels"); Pkg.add("DataFrames")') JuliaCall::julia_command('Pkg.add("Distributions")')
(2) The function did not print out a table for me (please see https://github.com/FixedEffects/FixedEffectjlr#output)
(3) FixedEffectInteract() fails like so:
ife <- FixedEffectInteract(df, "sales", "price", "state+year", 2, "state", vcov = "robust") @time reg_res = try regife(df_julia, @model( sales ~ price, ife = ( state+year, 2 ), fe = state, vcov = robust, save = true ), maxiter = 10000 );catch; (augmentdf=0, coefnames=0) end; IFE regression has failed ife $statistics [1] NA $dt_augment [1] NA
ife <- FixedEffectInteract(df, "sales", "price", "state+year", 2, "state", vcov = "robust") @time reg_res = try regife(df_julia, @model( sales ~ price, ife = ( state+year, 2 ), fe = state, vcov = robust, save = true ), maxiter = 10000 );catch; (augmentdf=0, coefnames=0) end; IFE regression has failed
ife $statistics [1] NA
$dt_augment [1] NA
I have attached the R code file. Thanks again for your work on this package.
Sincerely, Zia
The text was updated successfully, but these errors were encountered:
I have yet to update FixedEffectInteract to match the new syntax of InteractiveFixedEffectModels.jl
InteractiveFixedEffectModels.jl
I will see if I can quickly update the package to catch up to the julia code.
Sorry, something went wrong.
No branches or pull requests
Greetings:
Thank you for your work on IFE software. I mostly use Stata for analyses so my R skills are rather basic. I have no experience with Julia.
I am unable to run the
FixedEffectInteract()
example and also had to modify the setup to get theFixedEffects()
example to work.(1) For setup, I had to manually add the following before calling
FixedEffect_setup()
to make it workIFE_examples.txt
:
(2) The function did not print out a table for me (please see https://github.com/FixedEffects/FixedEffectjlr#output)
(3)
FixedEffectInteract()
fails like so:I have attached the R code file. Thanks again for your work on this package.
Sincerely,
Zia
The text was updated successfully, but these errors were encountered: