| errors {errors} | R Documentation |
Set or retrieve uncertainty to/from numeric vectors.
errors(x) errors_max(x) errors_min(x) errors(x) <- value set_errors(x, value = 0) as.errors(x, value = 0)
x |
a numeric object, or object of class |
value |
a numeric vector of length 1 or the same length as |
`errors<-` sets the uncertainty values (and converts x
into an object of class errors). set_errors is a pipe-friendly
version of `errors<-` and returns an object of class errors.
as.errors is an alias for set_errors.
See correl on how to handle correlations between pairs of variables.
errors returns a vector of uncertainty. errors_max
(errors_min) returns the values plus (minus) the uncertainty.
groupGeneric.errors, mean.errors,
Extract.errors, c, rep, cbind.errors,
format.errors, print.errors, plot.errors,
as.data.frame.errors, as.matrix.errors, t.
x = 1:3 class(x) x errors(x) <- 0.1 class(x) x (x <- set_errors(x, seq(0.1, 0.3, 0.1))) errors_max(x) errors_min(x)