Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Core Plot | 2,752 | 147 | 8 months ago | 11 | September 19, 2016 | 48 | bsd-3-clause | Objective-C | ||
Core Plot source code and example applications | ||||||||||
Plot | 2,503 | 300 | 21 days ago | 29 | May 12, 2023 | 85 | bsd-3-clause | Go | ||
A repository for plotting and visualizing data | ||||||||||
Descartes | 117 | 4 years ago | 3 | February 10, 2018 | 2 | mit | JavaScript | |||
A small plotting JavaScript library, made for TheoremJS | ||||||||||
Nothon | 1 | 8 years ago | other | JavaScript | ||||||
Server-based note taking application |
gonum/plot
is the new, official fork of code.google.com/p/plotinum.
It provides an API for building and drawing plots in Go.
Note that this new API is still in flux and may change.
See the wiki for some example plots.
For additional Plotters, see the Community Plotters Wiki page.
There is a discussion list on Google Groups: [email protected].
gonum/plot
is split into a few packages:
plot
package provides simple interface for laying out a plot and provides primitives for drawing to it.plotter
package provides a standard set of Plotter
s which use the primitives provided by the plot
package for drawing lines, scatter plots, box plots, error bars, etc. to a plot. You do not need to use the plotter
package to make use of gonum/plot
, however: see the wiki for a tutorial on making your own custom plotters.plotutil
package contains a few routines that allow some common plot types to be made very easily. This package is quite new so it is not as well tested as the others and it is bound to change.vg
package provides a generic vector graphics API that sits on top of other vector graphics back-ends such as a custom EPS back-end, draw2d, SVGo, X-Window, gopdf, and Gio.Documentation is available at:
https://godoc.org/gonum.org/v1/plot
You can get gonum/plot
using go get:
go get gonum.org/v1/plot/...
If you write a cool plotter that you think others may be interested in using, please post to the list so that we can link to it in the gonum/plot
wiki or possibly integrate it into the plotter
package.