Nothing
#' detect the encoding of texts
#'
#' Detect the encoding of texts in a character [readtext] object and report
#' on the most likely encoding for each document. Useful in detecting the
#' encoding of input texts, so that a source encoding can be (re)specified when
#' inputting a set of texts using [readtext()], prior to constructing
#' a corpus.
#'
#' Based on [stri_enc_detect][stringi::stri_enc_detect], which is in turn based on the ICU
#' libraries. See the ICU User Guide,
#' <https://unicode-org.github.io/icu/userguide/>.
#' @param x character vector, corpus, or readtext object whose texts' encodings
#' will be detected.
#' @param verbose if `FALSE`, do not print diagnostic report
#' @param ... additional arguments passed to [stri_enc_detect][stringi::stri_enc_detect]
#' @examples
#' \dontrun{encoding(data_char_encodedtexts)
#' # show detected value for each text, versus known encoding
#' data.frame(labelled = names(data_char_encodedtexts),
#' detected = encoding(data_char_encodedtexts)$all)
#'
#' # Russian text, Windows-1251
#' myreadtext <- readtext("https://kenbenoit.net/files/01_er_5.txt")
#' encoding(myreadtext)
#' }
#' @export
encoding <- function(x, verbose = TRUE, ...) {
UseMethod("encoding")
}
#' @noRd
#' @export
#' @import data.table stringi
encoding.character <- function(x, verbose = TRUE, ...) {
verbosity <- ifelse(is.null(getOption("readtext_verbosity")), 1, getOption("readtext_verbosity"))
addedArgs <- names(list(...))
if (length(addedArgs) && any(!(addedArgs %in% names(formals(stringi::stri_enc_detect)))))
if (verbosity >= 1)
warning("Argument", ifelse(length(addedArgs) > 1, "s ", " "), addedArgs, " not used.", sep = "", noBreaks. = TRUE)
encoding <- confidence <- conf <- NULL
n <- 1
# assign names if none
if (is.null(names(x)))
names(x) <- paste("text", 1:length(x), sep = "")
# detect encoding
detectedEncodings <- stringi::stri_enc_detect(x, ...)
dt <- data.table(text = rep(names(x), each = n),
encoding = unlist(lapply(detectedEncodings, function(x) x$Encoding[1:n])),
rank = rep(1:n, length(x)),
confidence = unlist(lapply(detectedEncodings, function(x) x$Confidence[1:n])))
conftable <- dt[, mean(confidence), by = encoding]
conftable <- conftable[!is.na(encoding)]
setnames(conftable, "V1", "conf")
conftable[, conf := conf / sum(conf)]
conftable <- conftable[order(-conf)]
# what are the top encodings
topEncodingsTable <- dt[rank == 1, mean(confidence), by = encoding]
topEncodingsTable <- topEncodingsTable[!is.na(encoding)]
setnames(topEncodingsTable, "V1", "conf")
topEncodingsTable[, conf := conf / sum(conf)]
topEncodingsTable <- topEncodingsTable[order(-conf)]
if (verbose)
message("Probable encoding: ", topEncodingsTable[1, encoding], sep = "", appendLF = FALSE)
if (nrow(topEncodingsTable) == 1 & topEncodingsTable[1, encoding] == "ISO-8859-1")
if (verbose)
message("\n (but note: detector often reports ISO-8859-1 when encoding is actually UTF-8.)",
appendLF = FALSE)
if (nrow(topEncodingsTable) > 1) {
if (verbose)
message(" (but ", "other encodings",
# paste(topEncodingsTable[2:nrow(topEncodingsTable), encoding], collapse = ", "),
" also detected)\n", sep = "", appendLF = FALSE)
barsize <- 60
proportions <- round(topEncodingsTable$conf * barsize)
plotsymbols <- c("*", "-", ".", "~", letters[1:5])
if (verbose) message(" Encoding proportions: ", appendLF = FALSE)
if (verbose) message("[", rep(plotsymbols[1:nrow(topEncodingsTable)],
proportions[1:nrow(topEncodingsTable)]), "]",
appendLF = FALSE)
if (verbose) {
message("\n Samples of the first text as:")
for (i in 1:nrow(topEncodingsTable)) {
message(sprintf("%-21s", paste0(" [", plotsymbols[i], "] ",
topEncodingsTable$encoding[i])),
stri_sub(suppressWarnings(stri_encode(x[1], topEncodingsTable$encoding[i])), length = 60))
}
}
} else
if (verbose) message("")
invisible(list(probably = topEncodingsTable[1, encoding],
all = sapply(detectedEncodings, function(x) x$Encoding[1])))
}
#' @rdname encoding
#' @noRd
#' @export
encoding.readtext <- function(x, verbose = TRUE, ...) {
if (verbose) print(x)
encoding(as.character(x), ...)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.