Displaying 1 result from an estimated 1 matches for "check_xy".
2012 Mar 21
2
Check results between two data.frame
...quot;)
}
else {
print("check")
}
}
}
}
However, as the two datasets I was comparing are large (400*100 roughly),
so I would like to create a matrix to identify which ones are not same in
the two dataframes.
So I added 'CHECK_XY' in my code but when I run it, I got 'Error in
CHECK_XY[i, j] = c("good") : subscript out of bounds'.
Could anyone help please??
CHECK_1<-
function (x = "file1", y = "file2")
{
NROW <- nrow(x)
NCOL <- ncol(x)
CHECK_XY <- as.matrix...