print.plr: Print method for Polygonal Linear Regression

Description Usage Arguments Examples

Description

print.plr is the plr method of the generic print function which prints its argument.

Usage

1
2
## S3 method for class 'plr'
print(x, digits = max(3L, getOption("digits") - 3L), ...)

Arguments

x

the object to be printed.

digits

a non-null value for digits specifies the minimum number of significant digits to be printed in values.

...

further arguments passed to or from other methods.

Examples

1
2
3
4
5
6
7
8
9
yp <- psim(10, 10) #simulate 10 polygons of 10 sides
xp1 <- psim(10, 10) #simulate 10 polygons of 10 sides
xp2 <- psim(10, 10) #simulate 10 polygons of 10 sides
e <- new.env()
e$yp <- yp
e$xp1 <- xp1
e$xp2 <- xp2
fit <- plr(yp~xp1 + xp2, data = e)
fit  

psda documentation built on July 1, 2020, 6:10 p.m.