Summarizing RCompare Output
# S3 method for dataCompareRobject summary(object, mismatchCount = 5, ...)
object | an dataCompareR object, usually a result of a call to |
---|---|
mismatchCount | Integer. How many mismatches to include in tables |
... | Passes any additional arguments (not used in current version) |
The function summary.dataCompareR computes and returns a list of summary details from the dataCompareR output given in object
containing
name of the first dataframe in the compare call
name of the second dataframe in the compare call
the number of rows in datanameA
the number of rows in datanameB
the version of rCompare
used to generate the dataCompareR object object
the date and time the dataCompareR object object
was created
the version of R used
a data frame containing the meta data information on datanameA
and datanameB
the number of columns of the same name contained in both datanameA
and datanameB
the number of columns only in datanameA
the number of columns only in datanameB
the number of columns used to match rows in datanameA
and datanameB
a data frame detailing which columns in both datanameA
and datanameB
have different class types
the number of columns with different variable types
the number of rows with matching ID columns in both datanameA
and datanameB
the number of rows with non matching ID columns in datanameA
the number of rows with non matching ID columns in datanameB
the number of matched rows where at least one value is unequal
the number of matched rows where all values are equal
the number of matched columns where all values are equal
the number of matched columns where at least one value is unequal
a data frame detailing the mismatches for each matched column
the number of matched numeric rows that contain a NA
the maximum difference between numeric columns from all matched columns
Other dataCompareR.functions:
generateMismatchData()
,
print.dataCompareRobject()
,
rCompare()
,
saveReport()
#>#>#> #> Data Comparison #> =============== #> #> Date comparison run: 2021-09-05 16:53:49 #> Comparison run on R version 4.1.1 (2021-08-10) #> With dataCompareR version 0.1.3 #> #> #> Meta Summary #> ============ #> #> #> |Dataset Name |Number of Rows |Number of Columns | #> |:------------|:--------------|:-----------------| #> |iris |150 |5 | #> |iris |150 |5 | #> #> #> Variable Summary #> ================ #> #> Number of columns in common: 5 #> Number of columns only in iris: 0 #> Number of columns only in iris: 0 #> Number of columns with a type mismatch: 0 #> No match key used, comparison is by row #> #> #> #> Row Summary #> =========== #> #> Total number of rows read from iris: 150 #> Total number of rows read from iris: 150 #> Number of rows in common: 150 #> Number of rows dropped from iris: 0 #> Number of rows dropped from iris: 0 #> #> #> Data Values Comparison Summary #> ============================== #> #> Number of columns compared with ALL rows equal: 5 #> Number of columns compared with SOME rows unequal: 0 #> Number of columns with missing value differences: 0 #> #> Columns with all rows equal : PETAL.LENGTH, PETAL.WIDTH, SEPAL.LENGTH, SEPAL.WIDTH, SPECIES #>