ggplotd
ggplotd copied to clipboard
Plotting library for the D programming library. The design is inspired by ggplot2 for R.
Splendid
Do you have any plans to add gganimate? Or can you somehow create a gif using ggplotd? Thanks! 🌞
I tried to compile your ggplotd on my project directory. It failed to build because of "ggplotd/colourspace.d(8): Error: module `hsx` is in file 'std/experimental/color/hsx.d' which cannot be read" I checked...
.dub/packages/ggplotd-1.2.1/ggplotd/source/ggplotd/guide.d(398,51): Deprecation: function std.typecons.Nullable!(RGB!("rgb", double, false, cast(RGBColorSpace)0)).Nullable.get_ is deprecated - Implicit conversion with alias Nullable.get this will be removed after 2.096. Please use .get explicitly.
How can I configure a fixed ratio between x and y axes in ggplotd ? I easily found what I am looking for in ggplot which ggplotd inspires a lot....
How tightly ggplotd is integrated with cairo? Could you give some advice where to start to implement custom renderer?
eg: analog to matlab's legend: ``` legend('sin(x)','cos(x)') ``` https://www.mathworks.com/help/matlab/creating_plots/add-title-axis-labels-and-legend-to-graph.html looked at continousLegend+friends (https://blackedder.github.io/ggplotd/ggplotd/legend.html) but couldn't find the above functionality
I've just cloned the library to my Win10 PC, having DMD32 D Compiler v2.083.0 installed. I did a `dub build`, which was successful, followed by a `dub test`, which was...
Added shapes 'cross' and 'plus'. Also small bug fixes and optimisations.
How to disable drawing axis (line, ticks, labels)? I try hide it by delegate, but it's not work: ```d auto gg = GGPlotD().put((YAxis ya){ ya.show = false; return ya; });...