| lowess {FLCore} | R Documentation |
LOWESS smoother based on locally-weighted polynomial regression for objects of class
FLSR-class. The model fitted is of the form rec(x)~ssb(x).
lowess(x, y, f=2/3, iter=3, delta=0.01 * diff(range(xy$x[o])))
The FLR Team
# use the North Sea herring SR dataset data(nsher) # fitting a rec ~ ssb lowess nsher <- lowess(nsher) summary(nsher) ## Not run: plot(nsher) ## End(Not run)