plot.rtopVariogramCloud {rtop} | R Documentation |
Plot and Identify Data Pairs on Sample Variogram Cloud
Description
Plot a sample variogram cloud, possibly with identification of individual point pairs
Usage
## S3 method for class 'rtopVariogramCloud'
plot(x, ...)
Arguments
x |
object of class |
... |
parameters that are passed through to
|
Note
This function is mainly a wrapper around plot.variogramCloud
,
necessary because of different column names and different class names. The
description of arguments and value can therefore be found in
the help page of plot.variogramCloud
.
Author(s)
Jon Olav Skoien
References
See Also
Examples
rpath = system.file("extdata",package="rtop")
library(sf)
observations = st_read(rpath, "observations")
observations$obs = observations$QSUMMER_OB/observations$AREASQKM
# Create the sample variogram
rtopVario = rtopVariogram(observations, params = list(cloud = TRUE))
plot(rtopVario)