# Create a wide skimmed data frame (a skim_df)
skimmed <- skim(iris)
# Separate into a list of subtables by type
separate <- partition(skimmed)
# Put back together
identical(bind(separate), skimmed)
# > TRUE
# Alternatively, get the subtable of a particular type
yank(skimmed, "factor")
Run the code above in your browser using DataLab