| is.na.piar_index {piar} | R Documentation |
Missing values in a price index
Description
Identify missing values in a price index.
Usage
## S3 method for class 'piar_index'
is.na(x)
## S3 method for class 'piar_index'
anyNA(x, recursive = FALSE)
Arguments
x |
A price index, as made by, e.g., |
recursive |
Check if |
Value
is.na() returns a logical matrix, with a row for each level of x and a
columns for each time period, that indicates which index values are missing.
anyNA() returns TRUE if any index values are missing, or percent-change
contributions (if recursive = TRUE).
See Also
Other index methods:
[.piar_index(),
aggregate.piar_index(),
as.data.frame.piar_index(),
chain(),
contrib(),
head.piar_index(),
levels.piar_index(),
mean.piar_index(),
merge.piar_index(),
split.piar_index(),
stack.piar_index(),
time.piar_index(),
vcov.aggregate_piar_index()
Examples
index <- as_index(matrix(c(1, 2, 3, NA, 5, NA), 2))
anyNA(index)
is.na(index)
# Carry forward imputation
index[is.na(index)] <- 1
index
[Package piar version 0.7.0 Index]