Strips away all tabyl-related attributes from a data.frame.
untabyl(dat)Returns the same data.frame, but without the tabyl class and attributes.
mtcars %>%
tabyl(am) %>%
untabyl() %>%
attributes() # tabyl-specific attributes are gone
#> $names
#> [1] "am" "n" "percent"
#>
#> $class
#> [1] "data.frame"
#>
#> $row.names
#> [1] 1 2
#>