https://github.com/pforemski/gouda
Golang Utilities for Data Analysis
https://github.com/pforemski/gouda
clustering data-analysis data-science dbscan golang interpolate kdtree kmeans machine-learning
Last synced: 5 days ago
JSON representation
Golang Utilities for Data Analysis
- Host: GitHub
- URL: https://github.com/pforemski/gouda
- Owner: pforemski
- License: gpl-3.0
- Created: 2018-01-05T10:00:03.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-11-23T12:23:10.000Z (about 7 years ago)
- Last Synced: 2024-06-20T15:55:53.190Z (over 1 year ago)
- Topics: clustering, data-analysis, data-science, dbscan, golang, interpolate, kdtree, kmeans, machine-learning
- Language: Go
- Size: 36.1 KB
- Stars: 18
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gouda: Golang Utilities for Data Analysis
A collection of Golang libraries implementing various techniques for data analysis, including machine learning.
To install:
```
go get github.com/pforemski/gouda
```
This is work in progress. Expect breaking changes. [Embrace for impact](https://en.wikipedia.org/wiki/Sully_(film)).
## Features
Currently, it includes the following modules:
* [point](./point/): for operations on generic, n-dimensional points
* [kdtree](./kdtree/): a [kd-tree](https://en.wikipedia.org/wiki/K-d_tree) implementation
* data clustering:
* [kmeans](./kmeans/): the
[k-means](https://en.wikipedia.org/wiki/K-means_clustering) data clustering algorithm
* [dbscan](./dbscan/): the [DBSCAN](https://en.wikipedia.org/wiki/DBSCAN)
data clustering algorithm using kd-tree
* [interpolate](./interpolate/): numerical [interpolation](https://en.wikipedia.org/wiki/Interpolation)
methods (wip, currently just the Lagrange polynomial)
## Documentation
**API documentation**:
* See [godoc.org](https://godoc.org/github.com/pforemski/gouda) for the root of API documentation. Navigate to module directories for detailed information.
More documentation & some examples available in the README files of each module:
* [point](./point/README.md)
* [kdtree](./kdtree/README.md)
* [kmeans](./kmeans/README.md)
* [dbscan](./dbscan/README.md)
## Author
Copyright (C) 2018 by Pawel Foremski, [@pforemski](https://twitter.com/pforemski).
Licensed under GNU GPL v3.