powered by
To match the rows of one data.frame to the rows of another data.frame.
matchDF( x, table = unique.data.frame(x), by = names(x), by.x = character(), by.table = character(), view.table = character(), trace = FALSE, ... )
Function matchDF returns a integer
vector
data.frame, the rows of which to be matched.
data.frame, the rows of which to be matched against.
character scalar or vector
(optional) character scalar or vector, variable names of table to be printed in fuzzy suggestion (if applicable)
table
logical scalar, to provide detailed diagnosis information, default FALSE
FALSE
additional parameters, currently not in use
DF = swiss[sample(nrow(swiss), size = 55, replace = TRUE), ] matchDF(DF)
Run the code above in your browser using DataLab