Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的问题是关于对象类型操作的基本问题。
hello = 3 name = 'hello'
我正在寻找一个允许我通过仅使用对象名称来找到值 3 的函数。
就像是:
print.the.thing.called(name) [1] 3
非常感谢 !
用于get通过名称获取对象:
get
R> x <- 2 R> get("x") [1] 2