Matthieu Gomez
Matthieu Gomez
Julia
I've just written a package that may help with the Julia replications https://github.com/matthieugomez/FixedEffectModels.jl if you end up trying it, this would actually be a nice test of the package!
The backend `pfgplotsx` does not seem to work with ranges of rational numbers (but it works with vectors of rational numbers). ```julia using Plots pgfplotsx() ts = range(0, 1, step...
I was thinking that it would be nice to have a skipmissing keyword argument in transform/select/combine The idea is that it would only use rows where none of the observations...
- [x] Add more tests that residuals and fixedeffects are correct in the case of IV, weights, subsets in [RegressionResult](https://github.com/matthieugomez/FixedEffectModels.jl/blob/master/test/RegressionResult.jl). - [ ] Check that standard errors and F-stat are...
Would it be possible to export `getindex!` defined [here](https://github.com/tlycken/Interpolations.jl/blob/master/src/gridded/indexing.jl#L32)? It's very useful.
`subset` is preferred to `filter` in DataFrames 1.0, so I used `lm` as an example of using dataframe as a second argument.
KrylovKit does not precompile with Julia 1.2/1.3 and it is only tested with Julia >= 1.4.
With v0.5, there is a method error if the initial vector is Abstract, e.g. ```julia using KrylovKit n = 10 KrylovKit.eigsolve(rand(n, n), 1:n, 1, :LM) # ERROR: MethodError: no method...