Plotting method for a gnsstsmodel object.

# S3 method for gnsstsmodel
plot(
  x,
  main = NULL,
  y_unit = "mm",
  x_unit = "days",
  legend_position = "bottomright",
  legend_position_wv = "bottomleft",
  ...
)

Arguments

x

A gnsstsmodel object.

main

A string specifying the title of the plot.

y_unit

A string specifying the y axis label of the plot.

x_unit

A string specifying the x axis label of the plot.

legend_position

A string specifying the legend position of the plot.

legend_position_wv

A string specifying the legend position for the wv plot.

...

Additional graphical parameters.

Value

No return value. Plot a gnsstsmodel object.

Examples

if (FALSE) {
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)
}