| base64serialize | R Documentation | 
base64serialize() converts an R object into a string suitable for storing
in an environment variable. Use this function for encoding entire R objects
(such as OAuth tokens).
base64unserialize() is the inverse operation to base64serialize().
Use this function in your tic.R to access the R object previously encoded
by base64serialize().
base64serialize(x, compression = "gzip")
base64unserialize(x, compression = "gzip")
| x | Object to serialize or deserialize | 
| compression | Passed on as  | 
serial <- base64serialize(1:10)
base64unserialize(serial)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.