/go-prophet

Golang wrapper for Facebook's Prophet - Forecasting at scale library.

Primary LanguageGoMIT LicenseMIT

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