jid.params <- function(jid, debug=TRUE)
{
if( file.exists(jid) )
{
load(file=as.character(jid))
if( debug) print(ticket)
return(ticket$params)
} else
{
warning('invalid jid file path.')
return(NULL)
}
}
save.data.in.jid <- function(jid,...)
{
load(file=as.character(jid))
save(ticket, ..., file=jid)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.