jpmml / jpmml-converter

Java library for authoring PMML
GNU Affero General Public License v3.0
15 stars 4 forks source link

Support for `forecast::ets` models #2

Closed vruusmann closed 7 years ago

vruusmann commented 9 years ago

It should be possible to represent ets objects using the TimeSeriesModel element:

library("fpp")
library("forecast")

livestock.forecast = forecast(livestock)
print(livestock.forecast)
print(livestock.forecast$model)

plot(livestock.forecast)