compare_fits {gmwmx} | R Documentation |
Compare graphically two gnsstsmodel
objects.
Description
Compare graphically two gnsstsmodel
objects.
Usage
compare_fits(fit_1, fit_2, main = NULL, y_unit = "mm", x_unit = "days")
Arguments
fit_1 |
A |
fit_2 |
A |
main |
A |
y_unit |
A |
x_unit |
A |
Value
No return value. Produce a plot comparing two estimated models.
Examples
## Not run:
data(cola)
fit_gmwmx_1 = estimate_gmwmx(x = cola,
theta_0 = c(0.1,0.1,0.1,0.1),
n_seasonal = 1,
model_string = "wn+matern")
fit_gmwmx_2 = estimate_gmwmx(x = cola,
theta_0 = c(0.1,0.1,0.1),
n_seasonal = 1,
model_string = "wn+powerlaw")
compare_fits(fit_gmwmx_1, fit_gmwmx_2)
## End(Not run)
[Package gmwmx version 1.0.3 Index]