Hi all,
How can I extract what the parameters that the loess function fitted for the polynomial function it uses, for a particular x of my data?
For example, in:
cars.lo <- loess(dist ~ speed, cars)
cars.lo
What did it fit for when cars.lo$x == 5 ?
Update: I want the parameters of the polynomial function, not the prediction (predict) of the loess.
I am asking for it to get an estimate of the slope in that point.
Thanks, Tal