Description Usage Arguments Value Examples
Gets the name of the input in the parent frame.
1 | get_name_in_parent(x, escape_percent = TRUE)
|
x |
Variable to get the name of. |
escape_percent |
Logical. If |
A string giving the name of the input in the parent frame.
1 2 3 4 5 6 7 8 | outside <- 1
f <- function(inside, escape_percent)
{
get_name_in_parent(inside, escape_percent)
}
f(outside, TRUE)
f('10%', TRUE)
f('10%', FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.