Get frequencies of values in a vector
See also
Other vectorized functions:
get_cumulative_vocabulary(),
get_hir(),
get_htr(),
get_idf_by(),
get_match(),
get_sentiment(),
get_tf_by(),
get_tfidf_by(),
get_ttr(),
is_hapax(),
is_new()
Other vectorized functions:
get_cumulative_vocabulary(),
get_hir(),
get_htr(),
get_idf_by(),
get_match(),
get_sentiment(),
get_tf_by(),
get_tfidf_by(),
get_ttr(),
is_hapax(),
is_new()
Examples
my_values <- c("dog", "cat", "dog")
get_frequency(my_values)
#> [1] 2 1 2
