Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

base64

Encode/decode base64


Description

Simple in-memory base64 encoder and decoder. Used internally for converting raw vectors to text. Interchangeable with encoder from base64enc or openssl package.

Usage

base64_dec(input)

base64_enc(input)

Arguments

input

string or raw vector to be encoded/decoded

Examples

str <- base64_enc(serialize(iris, NULL))
out <- unserialize(base64_dec(str))
stopifnot(identical(out, iris))

jsonlite

A Simple and Robust JSON Parser and Generator for R

v1.7.2
MIT + file LICENSE
Authors
Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>), Duncan Temple Lang [ctb], Lloyd Hilaiel [cph] (author of bundled libyajl)
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.