correl {quantities} | R Documentation |
Handle Correlations Between quantities
Objects
Description
Methods to set or retrieve correlations or covariances between
quantities
objects.
Usage
## S3 replacement method for class 'quantities'
correl(x, y) <- value
## S3 replacement method for class 'quantities'
covar(x, y) <- value
Arguments
x |
an object of class |
y |
an object of class |
value |
a compatible object of class |
See Also
Examples
x <- set_quantities(1:10, m/s, 0.1)
y <- set_quantities(10:1, km/h, 0.2)
correl(x, y) <- 0.1 # accepted
correl(x, y) <- set_units(0.1) # recommended
correl(x, y)
covar(x, y)
[Package quantities version 0.2.2 Index]