Description Usage Arguments Details Value Note Author(s) References See Also Examples
View source: R/avg.variog.dir.R
Calculates directional empirical variogram of a random variable averaged over time.
1 2 | avg.variog.dir(day, coord1, coord2, id, variable, tol.angle1=45,
tol.angle2=135, cut.points=NULL, max.dist=NULL, nbins=300, type)
|
day |
numeric vector containing the day of observation. |
coord1 |
vector containing the longitudes of the metereological stations. |
coord2 |
vector containing the latitudes of the metereological stations. |
id |
vector with the id of the metereological stations. |
variable |
numeric vector containing the variable for which the empirical variogram is to be computed. |
tol.angle1 |
number giving a lower bound for the tolerance angle (measured in degrees). |
tol.angle2 |
number giving an upper bound for the tolerance angle (measured in degrees). |
cut.points |
numeric vector containing the cutpoints used for variogram binning. |
max.dist |
a numerical value giving the upper bound for the distance considered in the variogram computation |
.
nbins |
a numerical value giving the number of bins to use for variogram binning. If both |
type |
character string indicating the direction to use for variogram computations. Possible values are either 'E' (for East-West) or 'N' (for North-South). |
The directional empirical variogram of the given random variable is calculated by determining, for each day, the "directional" distance among all pairs of stations that have been observed in the same day and by calculating for each day the sum of all the squared differences in the given random variable within each bin. These sums are then averaged over time, with weights for each bin given by the sum over time of the number of pairs of stations within the bin.
The formula used is:
γ(h) = ∑_d \frac{1}{2N_{(h,d)}} (∑_i (Y(x_{i}+h,d)-Y(x_{i},d))^2)
where γ(h) is the empirical variogram at distance h, N_{(h,d)} is the number of pairs of stations that have been recorded at day d and whose distance is equal to h, and Y(x_{i}+h,d) and Y(x_{i},d) are, respectively, the values of the given variable observed on day d at stations located at x_{i}+h and x_{i}. Variogram binning is ignored in this formula.
The "directional" distance between two locations is defined to be equal to the distance between the two locations if the angle between the two locations is within the allowed range, while it is set equal to infinity if the angle between the two locations is outside the allowed range.
- Defaults -
By default, tol.angle1
and tol.angle2
are set to 45 and 135 degrees, respectively. If the vector with the cutpoints is not specified, the cutpoints are
determined so that there are nbins
number of bins with approximately the same number of pairs per bin.
If both the vector with the cutpoints and the number of bins, nbins
, are not provided, the function by default determines the cutpoints so that there are a total of
300 bins with approximately the same number of pairs per bin. If both the vector with the cutpoints and the number of bins are provided, the entry for the number of bins is
ignored and the vector with the cutpoints is used for variogram binning.
The default value for the maximum distance considered in the variogram computation is the 90-th percentile of the distances between the stations.
The function returns a list with components given by:
bin.midpoints |
Numeric vector with midpoints of the bins used in the directional empirical variogram computation. |
number.pairs |
Numeric vector with the number of pairs per bin. |
dir.variog |
Numeric vector with the directional empirical variogram values. |
The function might require some time to return an output.
Berrocal, V. J. veroberrocal@gmail.com, Gel, Y., Raftery, A. E., Gneiting, T.
Gel, Y., Raftery, A. E., Gneiting, T. (2004). Calibrated probabilistic mesoscale weather field forecasting: The Geostatistical Output Perturbation (GOP) method (with discussion). Journal of the American Statistical Association, Vol. 99 (467), 575–583.
Gel, Y., Raftery, A. E., Gneiting, T., Berrocal, V. J. (2004). Rejoinder. Journal of the American Statistical Association, Vol. 99 (467), 588–590.
Cressie, N. A. C. (1993). Statistics for Spatial Data (revised ed.). Wiley: New York.
avg.variog
for empirical variogram of a random variable averaged over time, Emp.variog
and EmpDir.variog
for,
respectively, empirical and directional empirical variogram of forecast errors averaged over time, and Variog.fit
for estimation of parameters in a parametric
variogram model.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ## Loading data
data(slp)
day <- slp$date.obs
id <- slp$id.stat
coord1 <- slp$lon.stat
coord2 <- slp$lat.stat
obs <- slp$obs
forecast <- slp$forecast
## Computing directional variogram of observed temperature
## No specified cutpoints, no specified maximum distance
## No specified tolerance angles and default number of bins
dir.variog <- avg.variog.dir(day,coord1,coord2,id,variable=obs, tol.angle1=NULL,tol.angle2=NULL,cut.points=NULL,max.dist=NULL, nbins=NULL,type='E')
## Plotting directional variogram
plot(dir.variog$bin.midpoints,dir.variog$dir.variog,xlab="Distance", ylab="Semi-variance",main="Empirical Directional variogram")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.