pdeffebach
pdeffebach
In the DataFramesMeta test suite, we load Lazy.jl to work with `@>` and `@as`. Tests fail due to something with `Lazy` and `MacroTools` See [here](https://travis-ci.com/github/JuliaData/DataFramesMeta.jl/jobs/401412977). Relevant PR [here](https://github.com/JuliaData/DataFramesMeta.jl/pull/191).
I just finished a big [PR](https://github.com/JuliaData/DataFramesMeta.jl/pull/221) in DataFramesMeta to try and reduce latency. Given an expression of the form ``` f(:x, :y) ``` we make an anonymous function ``` (x,...
I'm using metadata for the first time today (I usually use Stata and R for data cleaning) and I found it helpful to define the following functions to make it...
Fixes #399
Fixes #396
See comment [here](https://github.com/JuliaData/DataFramesMeta.jl/issues/302#issuecomment-941574643) Lots of grouped operations together ``` @groupby df :a begin @transform :a1 = mean(:a) @combine :a2 = ... end ``` This is speculative, and might never see...
This error occurs when there are singleton observations. It looks like GLFixedEffectModels.jl isn't keeping track of the number of observations well enough, and some indexing persists even after dropping singleton...
Here is some code I wrote for indexing into a `GroupedDataFrame` in cases where you want all the values corresponding to one key, or some combination thereof. ``` julia> using...
A pretty big annoyance I have with infiltrator is it's use of global scope rules inside the REPL. ``` julia> using Infiltrator julia> function foo() @infiltrate x = 1 for...
Continuing a discussion on Slack. I am a little confused about what I need to overload in order to get an existing custom Metropolis-Hastings algorithm to work with Parallel Tempering....