lldf | R Documentation |
Long listing of R session objects
lldf(
n = Inf,
envir = .GlobalEnv,
items = NULL,
use_utils_objectsize = TRUE,
all.names = TRUE,
...
)
n |
|
envir |
|
items |
optional |
all.names |
|
... |
additional arguments are passed to |
This function expands base::ls()
by also determining the
object size, and sorting to display the top n
objects by
size, largest first.
This package will call pryr::object_size
if available,
otherwise falls back to utils::object.size()
.
Other jam practical functions:
breakDensity()
,
checkLightMode()
,
check_pkg_installed()
,
colNum2excelName()
,
color_dither()
,
diff_functions()
,
exp2signed()
,
fileInfo()
,
fixYellow()
,
getAxisLabel()
,
handleArgsText()
,
heads()
,
isFALSEV()
,
isTRUEV()
,
jamba
,
jargs()
,
kable_coloring()
,
log2signed()
,
make_html_styles()
,
make_styles()
,
match_unique()
,
mergeAllXY()
,
middle()
,
minorLogTicks()
,
newestFile()
,
printDebug()
,
renameColumn()
,
rmInfinite()
,
rmNAs()
,
rmNA()
,
rmNULL()
,
sclass()
,
sdim()
,
setPrompt()
lldf(10);
# custom environment
newenv <- new.env();
newenv$A <- 1:10;
newenv$df <- data.frame(A=1:10, B=11:20);
lldf(envir=newenv);
rm(newenv);
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.