Nothing
## File Name: attach_environment.R
## File Version: 0.04
#######################################
# attach all elements in an environment
attach_environment <- function( res, envir )
{
CC <- length(res)
for (cc in 1:CC){
assign( names(res)[cc], res[[cc]], envir=envir )
}
}
.attach.environment <- attach_environment
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.