encodeUTF8 {rrMisc} | R Documentation |
Encode text to UTF-8
encodeUTF8(df, ...)
df |
data.frame or character vector |
... |
arguments passed to further functions |
utility function for formating
formatted object
maybe of most use under Windows-Environment
Roland Rapold
none
other utility-functions in this R-package
d.test <- data.frame(a = 1:10, b = letters[1:10], c = c("ä", "ö", "ü", "è", "à", "%", "&", "¢", "@", "¬")) d.test encodeUTF8(d.test) d.test <- c("ä", "ö", "ü", "è", "à", "%", "&", "¢", "@", "¬", "#") d.test encodeUTF8(d.test)