repositorypackage
0.0.0-20231204092713-fc07ecbafdc3
Repository: https://github.com/makasim/go-prophet.git
Documentation: pkg.go.dev
# Packages
No description provided by the author
# README
go-prophet
A tiny wrapper for Meta's prophet library.
Installation
Python is required to run the prophet library.
pip3 install -r py/requirements.txt
python3 --version
Usage
package main
import "github.com/rylans/go-prophet"
func main() {
p := prophet.New()
fs, err := p.Forecast(df)
if err != nil {
panic(err)
}
log.Println(fs)
}
License
MIT