Categorygithub.com/mattn/go-pairplot
repositorypackage
0.0.7
Repository: https://github.com/mattn/go-pairplot.git
Documentation: pkg.go.dev

# README

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)