For simple tasks, one can use the HSPlot canvas (a simple canvas) , which is rather similar to the HPlot class but it is less memory consuming. This class is based on the PTPlot package [].
Build SPlot canvas as:
>>> from jhplot import SPlot >>> c1=SPlot("Canvas") >>> c1=visible()this creates a default 600x400 canvas using the SPlot class. You can draw histograms, data points etc. using the same method draw(object) as for the HPlot class. One can also save and zoom the plot using the mouse.
Look at all methods associated with this class using the Code Assist:
>>> from jhplot import SPlot >>> c1=SPlot("Canvas") >>> c1. # press F4 to see all public methods