Skip to contents

Add aggregations columns into an all_basiclevel tibble

Usage

big_aggregate(x, exclude = NULL, output = NULL, exclude_chi = FALSE)

Arguments

x

an all_basiclevel dataframe

exclude

columns to exclude from the final output

output

an output path to save the result to

Value

a tibble containing the all_basicalevel data

Examples

if (FALSE) { # \dontrun{
# get all the aggregations
all_bl <- get_all_basiclevel()
big_agg_allbl <- big_aggregate(all_bl)

# return everything except the 'type_token_ratio' and 'prop_dad' columns

bigagg_allbl_reduced <- big_aggregate(all_bl, exclude=c('type_token_ratio', 'prop_dad'))
} # }