All Projects → mattn → go-pairplot

mattn / go-pairplot

Licence: other
No description or website provided.

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to go-pairplot

antenna analyzer vna
Pocket Arduino Nano based graphical SWR 160-6m bands panoramic VNA antenna analyzer based on AD9850, AD8302 and SGA3386
Stars: ✭ 17 (-55.26%)
Mutual labels:  plotter
gospn
A free, open-source inference and learning library for Sum-Product Networks (SPN)
Stars: ✭ 24 (-36.84%)
Mutual labels:  gonum
vec
Vector graphics software to generate HPGL output to drive a plotter
Stars: ✭ 19 (-50%)
Mutual labels:  plotter
sparse
Sparse matrix formats for linear algebra supporting scientific and machine learning applications
Stars: ✭ 136 (+257.89%)
Mutual labels:  gonum
fishdraw
procedurally generated fish drawings
Stars: ✭ 1,963 (+5065.79%)
Mutual labels:  plotter
bitrate-plotter
Plots a graph showing the bitrate every second or the bitrate of every GOP, for a video or audio file.
Stars: ✭ 15 (-60.53%)
Mutual labels:  plotter
occult
vpype plug-in to remove occulted lines in SVG files
Stars: ✭ 32 (-15.79%)
Mutual labels:  plotter
antenna analyzer
Arduino Uno based graphical SWR HF/VHF 160-1.25m bands antenna analyzer, plotter based on Si5351 module
Stars: ✭ 18 (-52.63%)
Mutual labels:  plotter
gridfont
grid-based system for designing simple symbols and fonts. including an example font. mainly intended for plotter drawings.
Stars: ✭ 91 (+139.47%)
Mutual labels:  plotter
chiagen
standalone chia generator
Stars: ✭ 13 (-65.79%)
Mutual labels:  plotter
vad-plotter
Plotter for NEXRAD VWP retrievals.
Stars: ✭ 18 (-52.63%)
Mutual labels:  plotter
grbl-mega-wall-plotter
(WIP) A variant of Grbl (v1.1g) for Arduino Mega with support for hanging wall plotters
Stars: ✭ 15 (-60.53%)
Mutual labels:  plotter
isovoxel
Isometric voxel generative art
Stars: ✭ 60 (+57.89%)
Mutual labels:  plotter
core
Create 2d primitive shapes, encapsulate and repeat them by handling each repetition and generate recursive shapes
Stars: ✭ 34 (-10.53%)
Mutual labels:  plotter

go-pairplot

The gonum/plot/plotter package behave like seaborn.pairplot.

Usage

p, err := plot.New()
if err != nil {
	log.Fatal(err)
}
pp, err := pairplot.NewPairPlot("iris.csv")
if err != nil {
	log.Fatal(err)
}
pp.Hue = "Name"
p.HideAxes()
p.Add(pp)
p.Save(8*vg.Inch, 8*vg.Inch, "example.png")

Installation

$ go build

License

MIT

Author

Yasuhiro Matsumoto (a.k.a. mattn)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].