Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
Nov 2, 2019
Apr 10, 2019
Nov 2, 2019
Nov 29, 2019
Dec 3, 2019
Dec 3, 2019

README.md

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)

About

No description or website provided.

Topics

Resources

Sponsor this project

 
Learn more about GitHub Sponsors

Packages

No packages published

Languages

You can’t perform that action at this time.