powered by
Side-by-side comparison of two vectors. The vectors get sorted and are compared element-wise. So the result will be as long as the union of the two vectors plus their number of values unique to one of them.
compare_vectors(x, y, differences_only = FALSE)
A matrix containing the side-by-side comparison.
Two vectors of the same mode.
Report only the differences?
Other searching functions: file_modified_last(), find_files(), fromto(), grep_file(), missing_docs, runsed(), search_files(), search_rows(), summary.filesearch()
file_modified_last()
find_files()
fromto()
grep_file()
missing_docs
runsed()
search_files()
search_rows()
summary.filesearch()
Other vector comparing functions: relative_difference()
relative_difference()
data(mtcars) cars <- rownames(mtcars) carz <- cars[-grep("Merc", cars)] cars <- cars[nchar(cars) < 15] cars <- c(cars, "foobar") compare_vectors(cars, carz)
Run the code above in your browser using DataLab