Skip to contents

Construct a single row summary of the BINNET model. Contains the variance of residuals (sigma2).

Usage

# S3 method for BINNET
glance(x, ...)

Arguments

x

model or other R object to convert to single-row data frame

...

Other arguments ignored

Value

A one row tibble summarising the model's fit.

Examples

melb_rain |>
  model(nn = BINNET(Wet ~ fourier(K = 1, period = "year"))) |>
  glance()
#> # A tibble: 1 × 6
#>   .model inputs hidden_nodes weights repeats sigma2
#>   <chr>   <dbl>        <dbl>   <int>   <int>  <dbl>
#> 1 nn          2            2       9      20  0.227