scalaplot
scalaplot copied to clipboard
Library to plot graphs using a scala frontend, and various backends such as gnuplot, jfreegraph, matplotlib, etc.
1. Pom upgraded to scala 12. 2. Added LabelChart, and an example, ExampleLabelTest, that maps French cities. 3. Several pretty small shortcuts in the code. Future plans: add color and...
I'm trying to create a plot with scalaplot. If I use the approach using plotter.pdf and plotter.gui it seems to work. ``` scala val plotter = new JFGraphPlotter(chart) plotter.pdf(outputDirName, outputFileName)...
The README.md file specifies to use the `JFGraphPlotter` class, but does not indicate how bring it into scope. Do I need to add something to my build.sbt file? or does...
In the Gnuplot section of the README, there is a code example `plotter.writeToPdf("dir/", "name")`. I don't find any such method. Are you sure that writeToPdf is a method callable on...
First off, nifty project! Gnuplot internally supports RGB color specs (not just named colors). It would be nice if scalaplot provided access to it (e.g., by implementing Color as a...
When I use a `pointSize` option, failed to generate output with no error. ``` scala output(PNG("./", "a"), xyChart(Seq(1.0d, 2.0d, 3.0d) -> Y(Seq(2.0d, 3.0d, 4.0d), style = XYPlotStyle.Points), pointSize = Some(3.0d)))...
For some data a stacked bar chart is more clear. E.g. jstack heap utilization graph:  Added option to choose between cluster or stacked bar chart styles. By default cluster...
Outputting a graph in PNG supports options like color and style, but those same options when applied to GUI mode have no effect. I'm using gnuplot 4.6.6 installed via Homebrew...
For example, if a series name contains an '_', it's a problem for Latex used to render it in legend, but escaping it by '\_' is a problem when writing...
I want to view the data in a dataset as follows: ``` for(data in dataset){ xxx val plotter = new JFGraphPlotter(chart) plotter.gui() } ``` When I execute it, it just...