Kyungdahm Yun

Results 44 comments of Kyungdahm Yun

Sorry for the slow response. Somehow I didn't get any notification from my own repo. I remember this plugin was initially coded to set colors through universal variables. Then it...

Sorry for such a long delay! I didn't get any notification from this repo and totally forgot about it. With that, I'm not sure why/whether this issue still happens, i.e.,...

In some of my plots, I want the legend hidden, but still want to control colors of the keys. Is there a way to do such things without relying on...

Never mind! I kinda figured it out for my issue. In my code, I was using `ManualColorKey` (then `ManualDiscreteKey`) to keep track of existing labels so we could easily update...

Let's say we have an initial plot like this: ```julia points = DataFrame(index=rand(0:10,30), val=rand(1:10,30)) line = DataFrame(val=rand(1:10,11), index=collect(0:10)) p = plot(layer(points, x=:index, y=:val, color=[colorant"green"]), Guide.manual_color_key("Legend", ["Points"], ["green"])) ``` Then I'd...

In my case, I actually make use of an own lightweight plotting API to accommodate both Gadfly and UnicodePlots depending on running context. That probably makes this issue a bit...

Then maybe it's happening after JuliaLinearAlgebra/MKL.jl#78 I guess. Now I have to explicitly add MKL.jl as a dependency to avoid lazy downloading and wonder if there is a better way...

That's a good point. FYI, here are results tested with an image created by the latest repo2docker. It has Python 3.8.8. ``` $ docker run -t --rm cropbox/cropbox:v0.3.0 python -c...

1. Somehow I failed to include a complete warning message. ``` /srv/conda/envs/notebook/lib/python3.8/subprocess.py:848: RuntimeWarning: line buffering (buffering=1) isn't supported in binary mode, the default buffer size will be used self.stdout =...

I'm not familiar with history of the recent change, but is there any reason we can't use default buffer size (`bufsize=-1` or leaving out = 8192 bytes) or maybe turning...