Nothing
# Generated by staticimports; do not edit by hand.
# ======================================================================
# Imported from pkg:staticimports
# ======================================================================
raw_to_utf8 <- function(data) {
res <- rawToChar(data)
Encoding(res) <- "UTF-8"
res
}
read_raw <- function(file) {
readBin(file, "raw", n = file.info(file)$size)
}
# Read file as UTF-8
read_utf8 <- function(file) {
res <- read_raw(file)
raw_to_utf8(res)
}
# Write text as UTF-8
write_utf8 <- function(text, ...) {
writeBin(charToRaw(enc2utf8(text)), ...)
}
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.