├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── docs └── img │ ├── gnuplot.png │ ├── jfreegraph.png │ ├── scatter.png │ └── test.png ├── pom.xml ├── project ├── build.properties ├── build.scala └── plugins.sbt └── src ├── main └── scala │ └── org │ └── sameersingh │ └── scalaplot │ ├── BarChart.scala │ ├── Chart.scala │ ├── Implicits.scala │ ├── Plotter.scala │ ├── Style.scala │ ├── XYChart.scala │ ├── XYData.scala │ ├── XYSeries.scala │ ├── gnuplot │ ├── Add.scala │ └── GnuplotPlotter.scala │ ├── jfreegraph │ └── JFGraphPlotter.scala │ ├── metrics │ ├── Histogram.scala │ ├── PrecRecallCurve.scala │ └── Stats.scala │ └── util │ └── CurveFitting.scala └── test └── scala └── org └── sameersingh └── scalaplot ├── BarPlotTest.scala ├── ExampleBarTest.scala ├── ExampleXYTest.scala ├── MetricsTest.scala └── XYPlotTest.scala /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/README.md -------------------------------------------------------------------------------- /docs/img/gnuplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/docs/img/gnuplot.png -------------------------------------------------------------------------------- /docs/img/jfreegraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/docs/img/jfreegraph.png -------------------------------------------------------------------------------- /docs/img/scatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/docs/img/scatter.png -------------------------------------------------------------------------------- /docs/img/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/docs/img/test.png -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/pom.xml -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.9 2 | -------------------------------------------------------------------------------- /project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/project/build.scala -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /src/main/scala/org/sameersingh/scalaplot/BarChart.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/src/main/scala/org/sameersingh/scalaplot/BarChart.scala -------------------------------------------------------------------------------- /src/main/scala/org/sameersingh/scalaplot/Chart.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/src/main/scala/org/sameersingh/scalaplot/Chart.scala -------------------------------------------------------------------------------- /src/main/scala/org/sameersingh/scalaplot/Implicits.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/src/main/scala/org/sameersingh/scalaplot/Implicits.scala -------------------------------------------------------------------------------- /src/main/scala/org/sameersingh/scalaplot/Plotter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/src/main/scala/org/sameersingh/scalaplot/Plotter.scala -------------------------------------------------------------------------------- /src/main/scala/org/sameersingh/scalaplot/Style.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/src/main/scala/org/sameersingh/scalaplot/Style.scala -------------------------------------------------------------------------------- /src/main/scala/org/sameersingh/scalaplot/XYChart.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/src/main/scala/org/sameersingh/scalaplot/XYChart.scala -------------------------------------------------------------------------------- /src/main/scala/org/sameersingh/scalaplot/XYData.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/src/main/scala/org/sameersingh/scalaplot/XYData.scala -------------------------------------------------------------------------------- /src/main/scala/org/sameersingh/scalaplot/XYSeries.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/src/main/scala/org/sameersingh/scalaplot/XYSeries.scala -------------------------------------------------------------------------------- /src/main/scala/org/sameersingh/scalaplot/gnuplot/Add.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/src/main/scala/org/sameersingh/scalaplot/gnuplot/Add.scala -------------------------------------------------------------------------------- /src/main/scala/org/sameersingh/scalaplot/gnuplot/GnuplotPlotter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/src/main/scala/org/sameersingh/scalaplot/gnuplot/GnuplotPlotter.scala -------------------------------------------------------------------------------- /src/main/scala/org/sameersingh/scalaplot/jfreegraph/JFGraphPlotter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/src/main/scala/org/sameersingh/scalaplot/jfreegraph/JFGraphPlotter.scala -------------------------------------------------------------------------------- /src/main/scala/org/sameersingh/scalaplot/metrics/Histogram.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/src/main/scala/org/sameersingh/scalaplot/metrics/Histogram.scala -------------------------------------------------------------------------------- /src/main/scala/org/sameersingh/scalaplot/metrics/PrecRecallCurve.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/src/main/scala/org/sameersingh/scalaplot/metrics/PrecRecallCurve.scala -------------------------------------------------------------------------------- /src/main/scala/org/sameersingh/scalaplot/metrics/Stats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/src/main/scala/org/sameersingh/scalaplot/metrics/Stats.scala -------------------------------------------------------------------------------- /src/main/scala/org/sameersingh/scalaplot/util/CurveFitting.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/src/main/scala/org/sameersingh/scalaplot/util/CurveFitting.scala -------------------------------------------------------------------------------- /src/test/scala/org/sameersingh/scalaplot/BarPlotTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/src/test/scala/org/sameersingh/scalaplot/BarPlotTest.scala -------------------------------------------------------------------------------- /src/test/scala/org/sameersingh/scalaplot/ExampleBarTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/src/test/scala/org/sameersingh/scalaplot/ExampleBarTest.scala -------------------------------------------------------------------------------- /src/test/scala/org/sameersingh/scalaplot/ExampleXYTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/src/test/scala/org/sameersingh/scalaplot/ExampleXYTest.scala -------------------------------------------------------------------------------- /src/test/scala/org/sameersingh/scalaplot/MetricsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/src/test/scala/org/sameersingh/scalaplot/MetricsTest.scala -------------------------------------------------------------------------------- /src/test/scala/org/sameersingh/scalaplot/XYPlotTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersingh/scalaplot/HEAD/src/test/scala/org/sameersingh/scalaplot/XYPlotTest.scala --------------------------------------------------------------------------------