pairwise_count {vivainsights} | R Documentation |
Perform a pairwise count of words by id
Description
This is a 'data.table' implementation that mimics the output of
pairwise_count()
from 'widyr' to reduce package dependency. This is used
internally within tm_cooc()
.
Usage
pairwise_count(data, id = "line", word = "word")
Arguments
data |
Data frame output from |
id |
String to represent the id variable. Defaults to |
word |
String to represent the word variable. Defaults to |
Value
data frame with the following columns representing a pairwise count:
-
"item1"
-
"item2"
-
"n"
See Also
Other Support:
any_idate()
,
camel_clean()
,
check_inputs()
,
cut_hour()
,
extract_date_range()
,
extract_hr()
,
heat_colours()
,
is_date_format()
,
maxmin()
,
read_preamble()
,
rgb2hex()
,
totals_bind()
,
totals_col()
,
tstamp()
,
us_to_space()
,
wrap()
Other Text-mining:
meeting_tm_report()
,
tm_clean()
,
tm_cooc()
,
tm_freq()
,
tm_wordcloud()
Examples
td <- data.frame(line = c(1, 1, 2, 2),
word = c("work", "meeting", "catch", "up"))
pairwise_count(td, id = "line", word = "word")
[Package vivainsights version 0.5.3 Index]