Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mattn/go-pairplot
https://github.com/mattn/go-pairplot
data-science go gonum plotter
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mattn/go-pairplot
- Owner: mattn
- Created: 2019-04-10T02:49:26.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-23T12:58:03.000Z (over 1 year ago)
- Last Synced: 2024-10-03T12:37:38.696Z (about 1 month ago)
- Topics: data-science, go, gonum, plotter
- Language: Go
- Homepage:
- Size: 190 KB
- Stars: 37
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go-pairplot
The gonum/plot/plotter package behave like seaborn.pairplot.
![](https://raw.githubusercontent.com/mattn/go-pairplot/master/screenshot.png)
## Usage
```go
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)