which_conflicts {daff} | R Documentation |
return which rows of a merged data.frame
contain conflicts
Description
return which rows of a merged data.frame
contain conflicts.
Usage
which_conflicts(merged)
Arguments
merged |
|
Value
integer
vector with row positions containing conflicts.
See Also
Examples
parent <- a <- b <- iris[1:3,]
a[1,1] <- 10
b[2,1] <- 11
# succesful merge
merge_data(parent, a, b)
parent <- a <- b <- iris[1:3,]
a[1,1] <- 10
b[1,1] <- 11
# conflicting merge (both a and b change same cell)
merged <- merge_data(parent, a, b)
merged #note the conflict
#find out which rows contain a conflict
which_conflicts(merged)
[Package daff version 1.1.1 Index]