force_sorted | R Documentation |
This function performs interpolation on the non-increasing parts of a
numeric input vector to ensure its values are monotonously increasing.
If the values are non-increasing at the end of the vector, these values will
be replaced by a sequence of numeric values, starting from the last
increasing value in the input vector, and increasing by a very small value,
which can be defined with parameter by
force_sorted(x, by = .Machine$double.eps)
x |
|
by |
|
A vector with continuously increasing values.
NA values will not be replaced and be returned as-is.
x <- c(NA, NA, NA, 1.2, 1.1, 1.14, 1.2, 1.3, NA, 1.04, 1.4, 1.6, NA, NA)
y <- force_sorted(x)
is.unsorted(y, na.rm = TRUE)
## Vector non increasing at the end
x <- c(1, 2, 1.5, 2)
y <- force_sorted(x, by = 0.1)
is.unsorted(y, na.rm = TRUE)
## We can see the values were not interpolated but rather replaced by the
## last increasing value `2` and increasing by 0.1.
y
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.