Nils Gudat

Results 41 issues of Nils Gudat

Ideally initially on the basis of the existing `SynthControlModel` as implemented, i.e. destructure into * outcome model (in this case simple convex hull, no intercept etc.) * minimization metric (here...

This will entail refactoring the `TreatmentPanel` object @azev77

MATLAB: `my_function(arg1, arg2)` Julia: `my_function[arg1, arg2]` Came across this bug from a user report on: https://discourse.julialang.org/t/methoderror-no-method-matching-getindex/22496/3

This is sort of self-assigned: ``` julia> using FixedEffectModels, DataFrames julia> df = DataFrame(y=rand(10), id = rand(1:2, 10), t = rand(1:2, 10)); julia> predict(reg(df, @formula(y ~ fe(id) + fe(t)), save...

bug

Julia has gained the ability to precompile in parallel on `using` a while ago: https://github.com/JuliaLang/julia/pull/49242 This doesn't seem to happen in IJulia - is there a way to access this...

This has been supported in `Pkg` REPL mode in the actual REPL for a while but fails in IJulia: ![image](https://github.com/JuliaLang/IJulia.jl/assets/7264491/55670816-7404-4522-9160-4312d9ecc2b1)

As described in https://www.tandfonline.com/doi/full/10.1080/01621459.2021.1891924 Initial implementation based on R's `gsynth`/`fect` package is now included, but needs: * Estimation of standard errors * Completing the support for covariates

enhancement
help wanted
new method

This is a somewhat speculative issue without a reproducer - I'm filing this as I've run into this a few times now and have had sporadic interactions with people on...

windows
regression 1.10

Same change: `[1:nfunc]` -> `collect(1:nfunc)`

`[]` concatenation is deprecated, replaced with `collect()` - this should be non-breaking, as `collect` will work in 0.3 as well.