print.PSM: Print function for a Partial Splines model

Description Usage Arguments Examples

View source: R/print.PSM.R

Description

Print function of an object of class 'PSM' will give you the main details of the model such as linear coefficients and their significance t-test, delta coefficients and a few more things

Usage

1
2
## S3 method for class 'PSM'
print(object, ...)

Arguments

object

an object of class 'PSM'

...

further arguments passed to the generic function 'print'

Examples

1
2
3
4
5
6
x <- data.frame(x = rnorm(100))
tx <- rnorm(100)
eps <- rnorm(100)
y <- x[,1] + tx^4 + eps
psm <- PartialSplines(y, x, tx)
print(psm)

reealpeppe/PSM documentation built on Dec. 22, 2021, 2:06 p.m.