gnsstsmodel
object.plot.gnsstsmodel.Rd
Plotting method for a gnsstsmodel
object.
# S3 method for class 'gnsstsmodel'
plot(
x,
main = NULL,
y_unit = "mm",
x_unit = "days",
legend_position = "bottomright",
legend_position_wv = "bottomleft",
...
)
A gnsstsmodel
object.
A string
specifying the title of the plot.
A string
specifying the y axis label of the plot.
A string
specifying the x axis label of the plot.
A string
specifying the legend position of the plot.
A string
specifying the legend position for the wv plot.
Additional graphical parameters.
No return value. Plot a gnsstsmodel
object.
if (FALSE) { # \dontrun{
data(cola)
fit_gmwmx = estimate_gmwmx(x = cola,
theta_0 = c(0.1,0.1,0.1,0.1),
n_seasonal = 1,
model_string = "wn+matern")
plot(fit_gmwmx)
} # }