使用R编程中的获取和发布

时间:2019-02-19 04:39:59

标签: r json api

我试图从R编程中调用API,但我在GET方法中获得了成功,但是当我读取Excel文件并将其转换为JSON时却出现了错误。

请在下面找到代码:

JSON应该看起来像这样:

{
"internalId": "Asset Name",
"description": {
"short": "Asset Type",
"long": "Asset Type"
},
"dataType": "numeric",
"optionCode": "1",
"dimension1": null,
"dimension2": null,
}

但是转换后看起来像:

[
  {
    "internalId": "RAttribute",
    "description.language": "en",
    "description.short": "R Attribute",
    "dataType": "string",
    "optionCode": 3
  }
]

我从哪里加载的数据集: Dataset

用于加载数据集的代码:

jsonAttributes <- jsonlite::toJSON(Attributes,pretty=TRUE)
print(jsonAttributes)

请在这里帮助。...让我知道是否需要其他信息。

0 个答案:

没有答案