将做一个简短的、可重复的示例来说明我遇到的问题,该示例涉及将数据从 R 插入到 mongo 数据库中。这很有挑战性,因为正如您将看到的,我有一个嵌套的数据列。解决这个问题对我的数据库至关重要,我认为其他人也可能遇到这个问题。
我的数据:
my.data <- structure(list(`_id` = c(10138L, 9466L, 9390L), firstName = c("Alex", "Quincy", "Steven"), lastName = c("Abrines", "Acy", "Adams"),
birthCity = c("Palma de Mallorca", "Tyler, TX", "Rotorua"
), birthCountry = c("Spain", "USA", "New Zealand")), row.names = c(NA,
3L), class = "data.frame")
my.data
> nba_players
_id firstName lastName birthCity birthCountry
1 10138 Alex Abrines Palma de Mallorca Spain
2 9466 Quincy Acy Tyler, TX USA
3 9390 Steven Adams Rotorua New Zealand
inner.df <- structure(list(jerseyNumber = 40L, weight = 240L, age = 21L), class = "data.frame", row.names = 485L)
num.vector <- c(1,3,5,7)
我的上述目标是双重的:
inner.df
向其中添加第 4 列num.vector
inner.df
作为第 6 列添加到中的每一行my.data
...这是我用来执行此操作的代码:
# add a list of the numbers to inner df
inner.df$shotIDs = list(num.vector)
# create allmonths column (name of the row where inner.df's will be placed)
my.data <- my.data %>%
dplyr::mutate(allmonths = NA)
# convert allmonths into a column of class == list
my.data$allmonths[1] = list(placeholder = NA)
# For EACH row in my main my.data dataframe, add the inner.df to the allmonths column/key
for(i in 1:nrow(my.data)) {
my.data$allmonths[[i]] <- inner.df
}
# Write this to my mongo db
con <- mongolite::mongo(collection = 'mycoll', db = 'mydb', url = "myurl")
con$insert(my.data) # this is not a good way to update a db
这是我的结果(来自 Robo 3T):
我对此非常接近,但由于某种原因,allmonths
它是一个长度为 1 的数组,而不是它自己的对象。如果allmonths
是一个具有 4 个字段的对象,其值与标记为 [0] 的对象完全相同,那么这会好得多。
有没有人看到我在这里的尝试有什么问题。我确信这是其他人在使用 R 中的嵌套对象时可能遇到的问题!任何帮助都非常感谢!