Produce report on dataframe based on possible separators identified within each column.

db_summary(data, value_sep = ";")

Arguments

data

A dataframe containing rows of systematic review data.

value_sep

A character used to separate values within the data. The default is set to ';'.

Value

Returns two outputs: 1) a list of possible candidate separators found within the dataframe; and 2) a summary report describing the database separators.

Examples

if (FALSE) { v <- db_summary(data) v$report v$candidate_separators }