Description Usage Arguments Value Examples
Perform one-tailed Fisher's Exact test for the collostruction/collocation strength.
It internally calls the utility function fye_compute and performs a row-wise computation using map_dbl.
The p-value is log-transformed to the base of ten as in the Collostructional Analysis.
1  | collex_fye(df, collstr_digit = 3)
 | 
df | 
 The output of   | 
collstr_digit | 
 The numeric vector for floating digits of the collostruction strength. The default is   | 
A tibble consisting of the collocates (column w),
co-occurrence frequencies with the node (column a),
the expected co-occurrence frequencies with the node (column a_exp),
the direction of the association (e.g., attraction or repulsion) (column assoc),
the collostruction strength (column collstr),
and two uni-directional association measures of Delta P.
1 2 3 4 5 6 7  | out <- colloc_leipzig(leipzig_corpus_list = demo_corpus_leipzig,
                      pattern = "mengatakan",
                      window = "r",
                      span = 3L,
                      save_interim = FALSE)
assoc_tb <- assoc_prepare(colloc_out = out, stopword_list = stopwords)
am_fye <- collex_fye(df = assoc_tb, collstr_digit = 3)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.