Daniel Schwabeneder

Results 43 comments of Daniel Schwabeneder

Unfortunately, I think currently there is not. This would require a new axis attribute like `border_width` or `axis_width` that would have to be implemented for all different backends (for pyplot...

> So having a new keyword type colorbar in addition to Plot, Subplot, Axis and Series, and reusing Axis keywords while prepending colorbar_? That does sound like a neat design....

There is no plot attribute that controls the colorbar width. Especially for the GR backend the automatical positioning and sizing of plot area, colorbars, ticks, axes guides, legends, etc. could...

You're right, probably my fault.

Thanks for the hints! > Also, seems unlikely to be the source of the crash reported in discourse, but do be careful about crashes in versions older than 1.4.2 (see...

As @timholy suggested I played around a little with the `tmin` parameter of `@snoopi`. I used `tmin = [0.0001, 0.0005, 0.001, 0.005, 0.01, 0.05, 0.1, 0.5]` and measured the time...

@aminya, here are the results for 1.6 with higher y resolution. ![ttfp_v1 6](https://user-images.githubusercontent.com/16589944/91635733-241a7c00-e9fb-11ea-9738-d18ee5d6c234.png) @timholy Thanks for your hint to the possibility and advantages of manually written precompile files. I just...

Sure, ```julia using CSV using DataFrames using StatsPlots # using Statistics data = sort(DataFrame(CSV.File(joinpath(@__DIR__, "benchmarks.csv")))) # set backend with defaults pgfplotsx( bg_inside = colorant"#29353b", bg_outside = colorant"#222d32", bg_legend = colorant"#222d32",...

I made a first draft for a package for this now: https://github.com/daschw/SankeyPlots.jl

~~`palette = palette(:Dark2)` works, but IMO `palette = :Dark2` should also. Not sure what's the issue there, maybe a call to `distinguishable_colors` or something.~~ EDIT: No it does not, it...