getName | R Documentation |
get the name of an input in nested function calls
getName(x)
x |
input object name or character string |
Character string with the name
https://stackoverflow.com/users/2725969/brodieg Implementation Berry Boessenkool, berry-b@gmx.de, Sep 2016
https://stackoverflow.com/a/26558733, substitute
# This does not work well:
lower <- function(x) deparse(substitute(x))
upper <- function(y) lower(y)
lower(pi) # returns "pi", as expected
upper(pi) # returns "y".
# That's why there is getName:
getName(pi) # returns "pi", as expected
upper <- function(y) getName(y)
upper(pi) # yay!
upper("dummy")
upper(dummy) # works also for nonexistent objects
dummy <- 7
upper("dummy") # still stable
upper(dummy) # still stable
upper(stackloss[1:5,])
upper2 <- function(data) upper(data)
upper2("K")
upper2(K)
# getName only works correctly if x is not an evaluated object:
lower2 <- function(inp, assign=FALSE) {if(assign) inp <- inp; getName(inp)}
lower2(pi) # "pi"
lower2(pi, TRUE) # "3.14159265358979"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.