Martin Alfaro
Martin Alfaro
It seems that if you don't specify the intercept as a fixed effect, residuals can't be retrived. The following is a MWE: ```julia df = DataFrame(a = rand(100), b =...
I think there's a bug in `ThreadsX.map`. I initialized Julia with 16 threads. MWE ```julia using ThreadsX, BenchmarkTools list1 = rand(50_000_000) .* 100 list2 = rand(50_000_000) .* 100 #OPERATION foo(x,y)...
Thanks for this great package!! I had a suggestion after working for several months with Franklin (actually PkgPage). Everything runs quite smoothly for me, except when it comes to including...
I've been using `FastBroadcast` and `@turbo` to speed up broadcasting operations in DataFrames. However, missing values are quite common when you work with a DataFrame, and `@turbo` throws an error...
I was expecting that LazyArrays would outperform a generator when we use logical operators, but I see it's not. Is this expected? I include a MWE, as the page says...
I wasn't sure if I should post this here or StatsPlots, but this issue is the same as in JuliaPlots/Plots.jl#3574. If you add numbers to each bar in groupedbar, it...
The issue shows up under pgfplotsx MWE ```julia using StatsPlots; pgfplotsx() xx = repeat(["This is a name","This is another name", "and a 3rd name"], 4) variable = repeat(["category 1","category 2"],...
is there any macro such as `@...` or `@..t` to implement `@.. thread=true`? Writing `thread=true` becomes a burden after a while. Thanks!
Just a couple of suggestions for this superb blazingly fast package! In summary, I propose following `BenchmarkTools` more closely regarding layout. Thanks for your work! 1. Adding "0 allocations: 0...