print.smooth.sspline: Display a Smooth.sspline Object

Description Usage Arguments Value Author(s) Examples

Description

The print and summary methods for smooth.sspline object.

Usage

1
2
3
4
  ## S3 method for class 'smooth.sspline'
print(x, ...)
  ## S3 method for class 'smooth.sspline'
summary(object, ...)

Arguments

x

smooth.sspline objects

object

smooth.sspline objects

...

other parameters, not used

Value

For print.smooth.sspline, a smooth.sspline object; for summary.smooth.sspline, NULL.

Author(s)

Xianhong Xie

Examples

1
2
3
4
5
6
7
8
9
subdat <- WT6367[sample(nrow(WT6367), 200), 2:4]
attach(subdat)

splobj <- smooth.sspline(lon, lat, avgt)

print(splobj)
summary(splobj)

detach(subdat)

sspline documentation built on May 2, 2019, 2:17 a.m.