Open tlnagy opened 4 years ago
It would be great to have LoessModel implement the RegressionModel interface so we can use all the nice features from StatsBase.
LoessModel
RegressionModel
StatsBase
How about StatsModels API also?
So, we'll have
fit(Loess, @formula(y ~ x), dataframe; span = 0.5)
Or / and
Loess(@formula(y ~ x), dataframe; span = 0.5)
It would be great to have
LoessModel
implement theRegressionModel
interface so we can use all the nice features fromStatsBase
.