我正在用一些联邦数据测试 RSocrata。我按照github 文档使用 API 读取数据集。我不明白为什么read.socrata()
在我使用 url 时有效,但在我使用数据集提供的 API 端点时无效。
相反,我收到 rbind 错误,提示使用 API 端点密钥时列数不匹配。
> token = "MYTOKEN"
> df.url <- read.socrata("https://data.medicare.gov/Hospital-Compare/Hospital-General-
+ Information/xubh-q36u", app_token = token)
> nrow(df.url)
[1] 4818
>
>
> df.api <- read.socrata("https://data.medicare.gov/resource/rbry-mqwu.json", app_token = token)
Error in rbind(deparse.level, ...) :
numbers of columns of arguments do not match
> nrow(df.api)
Error in nrow(df.api) : object 'df.api' not found