missing_range | R Documentation |
Functions to extract information about the declared missing values, or to declare such values if they are present in the data.
missing_range(x)
missing_range(x) <- value
missing_values(x)
missing_values(x) <- value
x |
A vector. |
value |
Any vector of values that should be declared as missing
(for |
missing_values()
will return a vector of one or more values.
missing_range()
will return a numeric vector of length 2.
x <- declared(c(-2, 1:5, -1),
labels = c(Good = 1, Bad = 5, DK = -1, NotApplicable = -2),
na_values = c(-1, -2)
)
x
missing_values(x)
missing_range(x) <- c(-10, -7)
missing_range(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.