rubyplot
rubyplot copied to clipboard
An advanced plotting library for Ruby.
Adding 'guide' lines can help in navigating the plots better and lead to better visibility. There should be two options - one for major ticks with higher opacity and the...
Currently `LegendBox` dimensions are almost hard coded and hard to scale. Change this to first check the space occupied by the contained legends, and then set the dimensions appropriately.
Support bar plots with negative values.
The legends in the Legend box should have a black border for a better-looking legend box and to make the legends with background colour visible.
We should have our own rubyplot GUI that will accept plots generated by GR or Magick and show them in a GUI using Qt or GTK that will allow the...
We should allow plotting various plots in loglog scale, which is very useful for many applications. The API can either by `Axes#loglog` or can be specified as an option to...
Since rubyplot is backend agnostic, there should be a consistent way of specifying various sizes things in a backend agnostic way that is applicable throughout the library. For example, the...
Currently many of the plots require that the user specify various options during the time of creating the plot which help in changing the nature of the plot. However, this...
Currently we simply get the center of the Axes and set the start point of the Axes title text from there. However, this is not a good and scalable approach...
New plots are to be implemented on a priority basis. Priority to be determined by: * Frequency of usage. * Need and requests by users. * Dependence on other kinds...