Nothing
.onLoad <- function(lib, pkg) {
# .First.lib <- function(lib, pkg) {
#library.dynam("CORElearn", pkg, lib)
initCore(16384)
}
.onUnload <- function(libpath) {
#.Last.lib <- function(libpath) {
destroyCore()
#library.dynam.unload("CORElearn", libpath)
}
initCore <- function(maxModels=16384)
{
tmp <- .C(C_initCore, as.integer(maxModels)) ## maximal number of models
}
destroyCore <- function()
{
tmp <- .C(C_destroyCore)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.