ursa_cache | R Documentation |
This help topic is about how cache is managed in the package.
ursa_cache()
Users, who want to keep cache files between R sessions, should define option with name ursaCacheDir
and value of the path for storage of cache files. This setting can be specified if ~/.Rprofile
file, or be in your code. If you specify permanent cache directory as sub-directory of tempdir()
(see example), it will be removed after finishing of R session.
NULL
There is no neccessary to call this function. It just defines this help topic.
Nikita Platonov platonov@sevin.ru
## internet connection is required
options(ursaCacheDir=file.path(tempdir(),".ursaCacheDir"))
print(c(tempdir=tempdir(),ursaCacheDir=getOption("ursaCacheDir")))
glance("Mount Eden",place="park")
dir(getOption("ursaCacheDir"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.