View source: R/sampleCompute.R
guessFileEncoding | R Documentation |
Guess file encoding.
guessFileEncoding(file.name)
file.name |
a character vector, describing one file. |
guessFileEncoding guess file encoding.
file character encoding.
dat <- rbind(matrix(rnorm(100, mean = 0, sd = 0.3), ncol = 2),
matrix(rnorm(100, mean = 2, sd = 0.3), ncol = 2),
matrix(rnorm(100, mean = 4, sd = 0.3), ncol = 2))
csv.file <- tempfile()
write.table(dat, csv.file, sep=",", dec=".")
guessFileEncoding(csv.file)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.