I am having trouble with Umlauts when I am using the View(kwic(x)) command. If I am looking at the kwich output in R directly, the umlauts are show in the correct way.
kwic(corp_bp, digital_dictionary, window = 10)
Output:
[text23, 2148] zur Information und Präsentation. Informationsrecherche analoge und digitale Medien | digitale |
When I am using the View command for a nicer representation, the Umlauts get lost:
View(kwic(corp_bp, digital_dictionary, window = 10))
Output:
text23 2146 2146 mediale Quellen zur Information und Präsentation . Informationsrecherche analoge und digitale
I tried using
View(kwic(corp_bp, digital_dictionary, window = 10), encode = "latin1")
(Argument not used)
and I also tried Encoding the kwic before viewing it. Which doesn't work, because the kwic is not a character vector.
Any ideas what I could do?