JuliaStats / Loess.jl

Local regression, so smooooth!
Other
103 stars 34 forks source link

LoessModel should implement StatsBase.RegressionModel interface? #36

Open tlnagy opened 4 years ago

tlnagy commented 4 years ago

It would be great to have LoessModel implement the RegressionModel interface so we can use all the nice features from StatsBase.

ayushpatnaikgit commented 1 year ago

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)