print: Print Summary Polygonal Linear Regression

Description Usage Arguments Examples

Description

print arguments of the class "summary.plr" and returns it invisibly (via invisible (x)).

Usage

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

Arguments

x

an object of the class "summary.plr".

digits

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

concise

a logical used to determine the type of digits.

...

further arguments special methods could require.

Examples

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

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