mat_col_check_same | R Documentation |
Add a col diff
mat_col_check_same(df, col_1, col_2, tol = 1e-08, filter = FALSE)
df |
data |
col_1 , col_2 |
The columns |
tol |
tolerance level |
filter |
should keep only rows with diff? |
data(iris_tb)
iris_tb$Sepal.Length2 <- iris_tb$Sepal.Length+rep(c(0.000001, 0), 75)
mat_col_check_same(iris_tb, Sepal.Length2, Sepal.Length)
mat_col_check_same(iris_tb, Sepal.Length2, Sepal.Length, filter=TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.