Nils Gudat

Results 82 comments of 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 ![image](https://user-images.githubusercontent.com/7264491/101042662-5648f600-3575-11eb-88a8-55ede120603c.png) but ```...

I've initially raised this on Zulip but thought I'd just PR straight away - this essentially moves us from ![image](https://user-images.githubusercontent.com/7264491/113006197-11bd1800-916d-11eb-8cd5-2ca324437423.png) to ![image](https://user-images.githubusercontent.com/7264491/113006240-197cbc80-916d-11eb-92c9-b68ab709b5cd.png)

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`...