Equality of objects
Equality of objects.
all_equals(x,y,round_digits = FALSE,without_attr=FALSE,fast_result=FALSE)
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. |
A boolean (TRUE/FALSE) value which represents if the items x and y are equal.
Manos Papadakis
R implementation and documentation: Manos Papadakis <papadakm95@gmail.com>.
x <- matrix( rnorm(100 * 100), ncol = 100 ) y <- matrix( rnorm(100 * 100), ncol = 100 ) all_equals(x,y) all_equals(x, x)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.