Equality of objects {Rfast} | R Documentation |
Equality of objects
Description
Equality of objects.
Usage
all_equals(x,y,round_digits = FALSE,without_attr=FALSE,fast_result=FALSE)
Arguments
x |
A Matrix, List, Dataframe or Vector. |
y |
A Matrix, List, Dataframe or Vector. |
round_digits |
The digit for rounding numbers. |
without_attr |
A boolean value (TRUE/FALSE) for deleting attributes. Be carefull although because some atributes are very important for you item. |
fast_result |
A boolean value (TRUE/FALSE) for using just identical.But you can combine only with round_digits argument. |
Value
A boolean (TRUE/FALSE) value which represents if the items x and y are equal.
Author(s)
Manos Papadakis
R implementation and documentation: Manos Papadakis <papadakm95@gmail.com>.
See Also
Match, mvbetas, correls, univglms, colsums, colVars
Examples
x <- matrix( rnorm(100 * 100), ncol = 100 )
y <- matrix( rnorm(100 * 100), ncol = 100 )
all_equals(x,y)
all_equals(x, x)
[Package Rfast version 2.1.0 Index]