print.hfr: Print an HFR model

View source: R/print.hfr.R

print.hfrR Documentation

Print an HFR model

Description

Print summary statistics for a fitted hfr model

Usage

## S3 method for class 'hfr'
print(x, ...)

Arguments

x

Fitted hfr model.

...

additional methods passed to print.

Details

The call that produced the object x is printed, following by a data.frame of summary statistics, including the effective degrees of freedom of the model, the R.squared and the regularization parameter.

Value

Summary statistics of HFR model

Author(s)

Johann Pfitzinger

See Also

hfr, cv.hfr and coef methods

Examples

x = matrix(rnorm(100 * 20), 100, 20)
y = rnorm(100)
fit = hfr(x, y, kappa = 0.5)
print(fit)


hfr documentation built on Jan. 22, 2023, 1:46 a.m.

Related to print.hfr in hfr...