Nothing
###########################################################################/**
# @RdocDefault objectSize
#
# @title "Gets the size of the object in bytes"
#
# \description{
# @get "title".
# This method is just a wrapper for @see "utils::object.size".
# }
#
# @synopsis
#
# \arguments{
# \item{...}{Arguments passed to @see "utils::object.size".}
# }
#
# \value{
# Returns an @integer.
# }
#
# @author
#
# \seealso{
# Internally @see "utils::object.size".
# }
#
# \keyword{attribute}
# \keyword{utilities}
#*/###########################################################################
setMethodS3("objectSize", "default", function(...) {
args <- list(...)
args$.scannedEnvs <- NULL ## Used by objectSize() for environment
do.call(object.size, args=args)
})
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.