意想不到的'),我想不通

发布于 2024-11-04 07:28:37 字数 549 浏览 0 评论 0原文

我收到以下错误。我不知道缺少什么,因为我似乎所有的括号都匹配了。

错误:意外的“)”位于: “{ if (grepl(propertiesData[x,'city'],population[z,'NAME'],ignore.case=TRUE) & (propertiesData[x,'stateLong']==population[z,'STATENAME')"

这是循环的代码:

for (z in c(1:nrow(population)))
{
    if (grepl(propertiesData[x,'city'],population[z,'NAME'],ignore.case=TRUE) & (propertiesData[x,'stateLong']==population[z,'STATENAME'))
    {
        propertiesData[x,'population']=population[z,'POP_2009']
        break
    }
}

I am getting the following error. I can not figure out what is missing, as I seem to have all my brackets matched up.

Error: unexpected ')' in:
"{
if (grepl(propertiesData[x,'city'],population[z,'NAME'],ignore.case=TRUE) & (propertiesData[x,'stateLong']==population[z,'STATENAME')"

Here is the code of the loop:

for (z in c(1:nrow(population)))
{
    if (grepl(propertiesData[x,'city'],population[z,'NAME'],ignore.case=TRUE) & (propertiesData[x,'stateLong']==population[z,'STATENAME'))
    {
        propertiesData[x,'population']=population[z,'POP_2009']
        break
    }
}

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

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

发布评论

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

评论(3

﹂绝世的画 2024-11-11 07:28:37
==population[z,'STATENAME'))

看来您忘记了右括号。添加它,看看会发生什么:

==population[z,'STATENAME']))
==population[z,'STATENAME'))

Seems like you forgot the closing bracket. Add it in and see what happens:

==population[z,'STATENAME']))
铁憨憨 2024-11-11 07:28:37

您在行尾缺少一个 ]

...==人口[z,'STATENAME'] ))

You're missing one ] at the end of line.

...==population[z,'STATENAME'] ))

逆夏时光 2024-11-11 07:28:37

您在末尾缺少“]”:(propertiesData[x,'stateLong']==population[z,'STATENAME']))

You are missing "]" at the end : (propertiesData[x,'stateLong']==population[z,'STATENAME']))

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