问题标签 [jsonlite]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
0 回答
659 浏览

json - How to handle HTTP error 503 when making API calls to process JSON files in R with the jsonlite package?

I'm having problems using the JSONlite package in R to collect Dota2 match data using the Steam API. I am not an experienced developer and really appreciate any help. Thanks!

I have created a script in R. When I check the API call using a web browser it correctly returns the JSON contents, but when I execute the very same API call in R (either in a for loop or as a single call) using the fromJSON() function, I get the following errors:

This is the R script I have created to collect multiple JSON responses using the fromJSON command and jsonlite:

0 投票
2 回答
484 浏览

r - R:JSONlite 循环问题

我连续收到所有“Google Map API Requests”,但是当我尝试循环调用和解析它时。我收到一个错误。如果我不使用循环并手动执行它,它就可以工作。

我得到的错误是:

0 投票
1 回答
14668 浏览

r - jsonlite for R 在尝试安装时出错

从哪里获得 jsonlite?显然它从 CRAN 中丢失了?

给出:

有什么建议么?

0 投票
1 回答
1269 浏览

r - R中jsonlite的列表转换

我想使用 jsonlite 从 json 文件导入 R 中的矩阵列表。

上面的代码不起作用,因为它在 R 内部是一个数字列表。但是,我想要我的列表A,B,C,即l. 有没有办法使用 jsonlite 取回正确的矩阵列表?

0 投票
1 回答
1360 浏览

json - 如何从JSON列表获取数据框?

我是 json 数据的新手,需要帮助将数据解开到数据框中。

str(url) 表明这是一个包含列表和数据框的列表。我搜索了互联网,但没有找到解决问题的简单方法。

我想把它作为我熟悉的数据框女巫。

0 投票
1 回答
1728 浏览

json - 提取、格式化和分离已存储在数据框列中的 JSON

我如何解析和处理已经存在于数据框中的 JSON?

样本数据:

我想将列中的原始 JSON 提取、格式化和分离y成有序的列,最好使用library(jsonlite).

提前致谢!

0 投票
1 回答
1077 浏览

json - 如何使用 jsonlite R 包将长度为 1 的 R 向量编码为 json 中的单个值?

我正在尝试使用 jsonlite 包和 toJSON 函数将 R 列表编码为 json。我有一个简单的项目,例如:

我希望它变成:

相反,我得到:

我试图向后者提供此 json 的 API 会阻塞后者并需要前者。关于如何从 jsonlite (或另一个 R json 包)获得前一种行为的任何建议?

0 投票
1 回答
719 浏览

json - jsonlite 的 fromJSON 返回 2 个列表而不是 df

我正在按照FCC 的文档下载有关诉讼程序的一些元数据。

我不相信我可以发布数据,但您可以获得免费的API 密钥

我的代码生成 2 个列表的列表,而不是 JSON 格式的结构化 df。

我的目标是拥有一个数据框,其中每个 json 元素都是它自己的列.. 就像普通的 df 一样。

0 投票
1 回答
413 浏览

json - r - jsonlite 在 json 数组“父元素”末尾添加回车

我是在 R 中操作 json 数组的新手。当我使用以下代码将使用 R 包 jsonlite 的 json 数组写入 .json 文件时,我将整个 json 数组打印在该文件的第一行(reg 是一个数据。框架)。

我希望能够在嵌套层次结构中的每个主要(“父”)元素的末尾添加一个回车符“\n”,因此它看起来如下所示:

代替:

谁能帮我?

注意:我不想要“漂亮”的布局。我想要每个父元素/所有子属性一行。

这是一个示例 data.frame

0 投票
1 回答
20269 浏览

json - Parse Error: "Trailing Garbage" while trying to parse JSON column in data frame

I have a log file that look like this. This is a text document that looks like:

I'm trying to parse the JSON in the Message column by:

But, I'm hitting the following error:

How can I get rid of the "trailing garbage"?