blob: 3d69eaa1ab60faffbf9e805e58613248c59ed3fb [file] [log] [blame]
Marc Kupietz381cb982023-05-13 15:06:32 +02001library(RKorAPClient)
Marc Kupietz381cb982023-05-13 15:06:32 +02002library(kableExtra)
3
Marc Kupietz381cb982023-05-13 15:06:32 +02004
5new("KorAPConnection", verbose = TRUE) %>%
Marc Kupietza3d9a322025-02-04 12:31:05 +01006 auth() %>%
Marc Kupietz381cb982023-05-13 15:06:32 +02007 collocationAnalysis("focus([marmot/p=ADJA] {Gendern})", leftContextSize=1, rightContextSize=0) %>%
8 mutate(collocate = paste0('<a href="', webUIRequestUrl, '">', collocate, '</a>')) %>%
9 select(collocate, O, pmi, mi2, mi3, logDice, ll) %>%
Marc Kupietza3d9a322025-02-04 12:31:05 +010010 kable(format = "html", escape = FALSE, caption = "Adjective collocates of 'Gendern'") %>%
Marc Kupietz381cb982023-05-13 15:06:32 +020011 kable_styling() %>%
12 print()
13