GetDataPrefix <-
function (the.name, suffix = ".ld$")
{
the.length <- nchar(the.name)
if (regexpr(suffix, the.name) > 0) {
return(substring(the.name, 1, the.length - nchar(suffix) +
1))
}
else {
return(the.name)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.