valindex | R Documentation |
Identify the indexes that are simultaneously valid (not missing) in sim
and obs
.
valindex(sim, obs, ...)
## Default S3 method:
valindex(sim, obs, ...)
## S3 method for class 'matrix'
valindex(sim, obs, ...)
sim |
zoo, xts, numeric, matrix or data.frame with simulated values |
obs |
zoo, xts, numeric, matrix or data.frame with observed values |
... |
further arguments passed to or from other methods. |
A vector with the indexes that are simultaneously valid (not missing) in obs
and sim
.
This function is used in the functions of this package for removing missing values from the observed and simulated time series.
Mauricio Zambrano Bigiarini <mauricio.zambrano@ing.unitn.it>
is.na
, which
sim <- 1:5
obs <- c(1, NA, 3, NA, 5)
valindex(sim, obs)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.