Skip to contents

A high level summary about all the words

Usage

all_words_summary(data, column = "word")

Arguments

data

A data frame containing a column of words

column

A character column containing a list of words

Value

A tibble

Examples

example_words <- data.frame(word_column = c("alfa", "bravo", "charlie", "delta"))
all_words_summary(data = example_words, column = "word_column")
#> # A tibble: 1 × 7
#>   total_words unique_words avg_length median_length sd_length longest_word
#>         <int>        <int>      <dbl>         <dbl>     <dbl> <chr>       
#> 1           4            4       5.25             5      1.26 charlie     
#> # ℹ 1 more variable: shortest_word <chr>