# NOT RUN {
# Let's walk through how we can
# generate some useful information for a
# really small table; it's actually
# called `small_table` and we can find
# it as a dataset in this package
small_table
# Create a pointblank `informant`
# object with `create_informant()`
# and the `small_table` dataset
informant <-
create_informant(
read_fn = ~small_table,
tbl_name = "small_table",
label = "An example."
)
# This function creates some information
# without any extra help by profiling
# the supplied table object; it adds
# the sections: (1) 'table' and
# (2) 'columns' and we can print the
# object to see the information report
# Alternatively, we can get the same report
# by using `get_informant_report()`
report <- get_informant_report(informant)
class(report)
# }
Run the code above in your browser using DataLab