print.smooth.sspline {sspline} | R Documentation |
The print and summary methods for smooth.sspline
object.
print.smooth.sspline(x, ...) summary.smooth.sspline(object, ...)
x |
smooth.sspline objects |
object |
smooth.sspline objects |
... |
other parameters, not used |
For print.smooth.sspline
, a smooth.sspline
object; for
summary.smooth.sspline
, NULL.
Xianhong Xie
data(WT6367) subdat <- WT6367[sample(nrow(WT6367), 200), 2:4] attach(subdat) splobj <- smooth.sspline(lon, lat, avgt) print(splobj) summary(splobj) detach(subdat)