Jason Rupert wrote:
> Â
> By any chance is there an R equivalent to MATLAB's "whos" command?
>
whos = function(envir=parent.frame())
print(sapply(ls(envir=envir), USE.NAMES=TRUE, get, envir=envir))
or simply
whos = ls.str
and
x = 1
y = 2
whos()
vQ
______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.