获取函数中参数所分配变量的名称

发布于 2025-01-10 06:52:43 字数 289 浏览 0 评论 0原文

我想说明已分配给函数中的参数的变量。函数更复杂,但下面是一个示例场景,我希望函数返回变量的名称:x

例如

x <- 3
my_function <- function(arg1) {print(arg1)}

,其中:my_function(x) 将返回 < code>x

和: my_function(y) 将返回 y

这可能吗?

I'd like to state the variable that has been assigned to an argument in a function. Function is more complex, but an example scenario is below, where I want the function to return the name of the variable: x

e.g.

x <- 3
my_function <- function(arg1) {print(arg1)}

where: my_function(x) will return x

and: my_function(y) will return y

Is this possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼藏柔 2025-01-17 06:52:43

使用substitute返回一个symbol对象。如果我们在 substitute 上使用 deparse 包装,它会返回一个 character

my_function <- function(arg1) substitute(arg1)

-testing

> my_function(x)
x
> my_function(y)
y

Use substitute to return a symbol object. If we wrap with deparse on the substitute, it returns a character

my_function <- function(arg1) substitute(arg1)

-testing

> my_function(x)
x
> my_function(y)
y
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文