summary.fit_gnss_ts_ngl {gmwmx2}R Documentation

Extract estimated parameters from a fit_gnss_ts_ngl

Description

Extract estimated parameters from a fit_gnss_ts_ngl

Usage

## S3 method for class 'fit_gnss_ts_ngl'
summary(object, scale_parameters = FALSE, ...)

Arguments

object

A fit_gnss_ts_ngl object.

scale_parameters

A boolean indicating whether or not to scale estimated parameters so that the returned estimated trend is provided in m/year instead of m/day. Default is FALSE.

...

Additional parameters.

Examples

x <- download_station_ngl("P820")
fit1 <- gmwmx2(x, n_seasonal = 2, component = "N", stochastic_model = "wn + pl")
summary(fit1)
summary(fit1, scale_parameters = TRUE)
fit2 <- gmwmx2(x, n_seasonal = 2, component = "N", stochastic_model = "wn + fl")
summary(fit2)


[Package gmwmx2 version 0.0.2 Index]