% -6ren">
gpt4 book ai didi

r - 将 json 列解压缩到数据框中

转载 作者:行者123 更新时间:2023-12-04 08:08:33 27 4
gpt4 key购买 nike

我在数据框列中有 json 字符串。我想将所有这些新的 json 列带入数据框中。

# Input
JsonID <- as.factor(c(1,2,3))
JsonString1 = "{\"device\":{\"site\":\"Location1\"},\"tags\":{\"Engine Pressure\":\"150\",\"timestamp\":\"2608411982\",\"historic\":false,\"adhoc\":false},\"online\":true,\"time\":\"2608411982\"}"
JsonString2 = "{\"device\":{\"site\":\"Location2\"},\"tags\":{\"Engine Pressure\":\"160\",\"timestamp\":\"3608411983\",\"historic\":false,\"adhoc\":false},\"online\":true,\"time\":\"3608411983\"}"
JsonString3 = "{\"device\":{\"site\":\"Location3\"},\"tags\":{\"Brake Fluid\":\"100\",\"timestamp\":\"4608411984\",\"historic\":false,\"adhoc\":false},\"online\":true,\"time\":\"4608411984\"}"
JsonStrings = c(JsonString1, JsonString2, JsonString3)
Example <- data.frame(JsonID, JsonStrings)
使用 jsonlite 库我可以将每个 json 字符串变成一个 1 行数据框。
library(jsonlite)

# One row dataframes
DF1 <- data.frame(fromJSON(JsonString1))
DF2 <- data.frame(fromJSON(JsonString2))
DF3 <- data.frame(fromJSON(JsonString3))
不幸的是,JsonID 变量列丢失了。所有 json 字符串共享共同的列名,例如“时间”。但是有些列名他们不共享。通过将数据旋转更长的时间,我可以将所有数据帧 Rbind 在一起。
library(dplyr)
library(tidyr)

# Row bindable one row dataframes
DF1_RowBindable <- DF1 %>%
rename_all(~gsub("tags.", "", .x)) %>%
tidyr::pivot_longer(cols = c(colnames(.)[2]))
有一个更好的方法吗?
我以前从未使用过 json 字符串。该解决方案必须在计算上具有可扩展性。

最佳答案

我们可以存储来自 fromJSON 的数据在数据框本身的列表中,因此我们不会丢失数据中已有的任何信息。我们可以使用unnest_wider从命名列表创建新列。

library(dplyr)
library(tidyr)
library(jsonlite)

Example %>%
rowwise() %>%
mutate(data = list(fromJSON(JsonStrings))) %>%
unnest_wider(data) %>%
select(-JsonStrings) %>%
unnest_wider(tags) %>%
unnest_wider(device)

# JsonID site `Engine Pressure` timestamp historic adhoc `Brake Fluid` online time
# <fct> <chr> <chr> <chr> <lgl> <lgl> <chr> <lgl> <chr>
#1 1 Location1 150 2608411982 FALSE FALSE NA TRUE 2608411982
#2 2 Location2 160 3608411983 FALSE FALSE NA TRUE 3608411983
#3 3 Location3 NA 4608411984 FALSE FALSE 100 TRUE 4608411984
由于每一列( datatagsdevice )的长度不同,我们需要使用 unnest_wider分别对他们每个人。

关于r - 将 json 列解压缩到数据框中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66095361/

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