Johannes Boehm
Johannes Boehm
Thanks, that's quite possible. What's your `labeldict`?
The key in the `labels` Dict is really the string to be replaced, e.g. you can do ``` julia> labeldict = Dict("mycol1: b" => "Column 1", "mycol1: c" => "Blah",...
Yes, I've been meaning for a while to write this in a more general way. In any case I'll make sure that GLM.jl will always be supported.
Hi Gabriel, You're right, calculating the PPML and friends in the end boils down to a series of pseudo de-meaning operations followed by OLS, which is what FixedEffects.jl is doing....
Glad to hear it's been useful!
Yes, I'm not sure which way around is better. If it's really only `hasfe` and `hasiv` that I need, I guess I could define `regtable` as a parametric function that...
hasiv and hasfe are not absolutely crucial for RegressionTables, but I believe access to the formula object is not in the StatsBase interface and that's going to be a problem....
This may be a bit off-topic, but I've found it easier to call Stata from julia, than vice versa. [This here](https://github.com/jmboehm/StataCall.jl) is my hacked-together attempt at an interface. This could...
Thanks for the report, and sorry that it took a while to respond. I'm trying to at least ensure that GLFixedEffectModels is not giving wrong answers, and your issue got...
I haven't done the algebra, but I would think (hope?) that it's not so hard. In general, you'd have to see how your weights are entering the likelihood function, and...