-
Notifications
You must be signed in to change notification settings - Fork 5
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
df1 <- data.frame(
rn = 1:100,
lt = letters[1:20]
)
df2 <- data.frame(
rn = 1:100,
lt = c(letters[1:5], rev(letters[6:20]))
)
diff1 <- diffdf(
df1,
df2,
file = "test.out"
)
produces in "test.out"
Differences found between the objects!
Summary of BASE and COMPARE
====================================
PROPERTY BASE COMP
------------------------------------
Name df1 df2
Class data.frame data.frame
Rows(#) 100 100
Columns(#) 2 2
------------------------------------
Not all Values Compared Equal
=============================
Variable No of Differences
-----------------------------
lt 70
-----------------------------
First 10 of 70 rows are shown in table below
========================================
VARIABLE ..ROWNUMBER.. BASE COMPARE
----------------------------------------
lt 6 f t
lt 7 g s
lt 8 h r
lt 9 i q
lt 10 j p
lt 11 k o
lt 12 l n
lt 14 n l
lt 15 o k
lt 16 p j
----------------------------------------
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request