Enter as many data frames as you would like and find the number of rows, the number of columns, and the number of unique rows in your data sets

explain_rows(...)

Arguments

...

enter as many data frames as you would like

Examples

explain_rows(demographics, math, ell)
#> # A tibble: 3 x 4 #> names number_of_rows number_of_unique_rows number_of_columns #> <chr> <int> <int> <int> #> 1 demographics 30000 30000 5 #> 2 math 24000 24000 4 #> 3 ell 9483 9483 6