I looked back at what existed and realized that jcckit is technically very good, but just lacking a simple wrapper around it to make it easier to use.
So, I forked it and made a really simple wrapper. Here's how to use:
import static easyjcckit.QuickPlot.*; double[] xaxis = new double[]{0,1,2,3,4,5}; double[] yvalues = new double[]{0,1,4,9,16,25}; scatter( xaxis, yvalues );
As well as scatterplots, you can freely add lines to the same axes if you want to use addPlot and plot.
Here is the code: https://bitbucket.org/hughperkins/easyjcckit
Hugh perkins
source share