gpt4 book ai didi

R : Check if R object exists before creating it

转载 作者:行者123 更新时间:2023-12-04 09:14:30 28 4
gpt4 key购买 nike

如果之前已经完成,我试图跳过从大文件加载数据的步骤。由于数据最终在(例如)mydf 中,我想我可以这样做:

if( !exists(mydf) )
{
#... steps to do loading here.
}

我是从 How to check if object (variable) is defined in R? 得到的和 https://stat.ethz.ch/R-manual/R-devel/library/base/html/exists.html

然而,R Studio 只是提示
'Error in exists(mydf) : object 'mydf' not found

为什么它会提示而不是只返回“真”或“假”?任何提示表示赞赏。

最佳答案

您应该使用 exists("mydf")相反 exists(mydf)

关于R : Check if R object exists before creating it,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28218508/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com