Nils Gudat
Nils Gudat
I think I might have run into this, a simple example without macro: ``` using StatsPlots groupedbar(string.(Date(2015,1,1):Month(1):Date(2015,5,1)), rand(5, 2), bar_position = :stack, format = :png) ``` gives  but ```...
I've initially raised this on Zulip but thought I'd just PR straight away - this essentially moves us from  to 
That's a very good point, I generally can't see why one would want different colours when plotting a `scatterpath`. Is it this recipe here: https://github.com/JuliaPlots/Plots.jl/blob/0a84ff8caff94e1923d379465d14998835e24d18/src/recipes.jl#L164? I just monkey-patched it locally...
Sorry, can't get that to work - `color := plotattr[:seriescolor]` complains that there's `no method matching getindex(::typeof(plotattr), ::Symbol)` (is `plotattr` a function?), and any other changes I make to try...
As I explained on [Discourse](https://discourse.julialang.org/t/unexpected-behavior-when-using-impute-locf-within-by/105642), this has nothing to do with `groupby`: ``` julia> locf([missing]) 1-element Vector{Missing}: missing julia> locf(Union{Float64, Missing}[missing]) ERROR: AssertionError: !(all(ismissing, data)) ```
How much effort would this be? I'm currently trying to fit a logistic regression on ~2bn observations, so need to group the data into a Bernoulli format with trials/successes by...
I've just been bitten by this again - I tend to forget about the `date2epochdays` function, and then use `Dates.value(::Date)`, only to later on need a date again from an...
Any news on this? It appears that `@parallel` still doesn't accept one line nested loops, or is there a way to achieve this by now?
Sorry, but I'm not sure I understand your suggestion. Would your first suggestion be to convert ``` @parallel for i=1:10, j=1:10, k=1:10 ... end ``` into ``` @parallel for i=1:10...
Turns out this is too complicated for me to address properly, but for anyone coming across this here's a monkey patch that at least makes it possible to pass `xticks`...