print.summary.hgwrm: Print summary of an 'hgwrm' object.

View source: R/hgwr.R

print.summary.hgwrmR Documentation

Print summary of an hgwrm object.

Description

Print summary of an hgwrm object.

Usage

## S3 method for class 'summary.hgwrm'
print(x, decimal.fmt = "%.6f", ...)

Arguments

x

An object returned from summary.hgwrm().

decimal.fmt

The format string passing to base::sprintf().

...

Arguments passed on to print_table_md

col_sep

Column separator. Default to "".

header_sep

Header separator. Default to "-". If header_sep only contains one character, it will be repeated for each column. If it contains more than one character, it will be printed below the first row.

row_begin

Character at the beginning of each row. Default to col_sep.

row_end

Character at the ending of each row. Default to col_sep.

table_before

Characters to be printed before the table.

table_after

Characters to be printed after the table.

table_style

Name of pre-defined style. Possible values are "plain", "md", "latex", or "booktabs". Default to "plain".

Value

No return.

See Also

summary.hgwrm(), print_table_md().

Examples

data(mulsam.test)
model <- hgwr(
  formula = y ~ L(g1 + g2) + x1 + (z1 | group),
  data = mulsam.test$data,
  coords = mulsam.test$coords,
  bw = 10
)
summary(model)


hgwrr documentation built on April 4, 2025, 3:57 a.m.