Unnest功能仅保留列表中的第一个值

时间:2018-04-29 14:16:01

标签: r list tidyr

我试图做一个看似简单的任务,将一个列列为未列出的。我搜索了stackoverflow,似乎我应该使用tidyr::unnest()函数。只有在我应用此函数时,它才会将向量列表的第一个值保留在数据帧的单个单元格中。

我的数据样本:

library(tidyr)

df <- structure(list(properties.referentie = c("SDE1786673", "SDE1625351", 
"SDE1636716"), geometry.coordinates = list(c(4.75813599901064, 
52.272456042152), c(6.00720800022323, 51.9725940422743), c(4.51752499877652, 
52.1393440422071))), .Names = c("properties.referentie", "geometry.coordinates"
), row.names = c(NA, -3L), class = c("tbl_df", "tbl", "data.frame"
))

我的代码输出不完整:

unnest(df, geometry.coordinates)

# A tibble: 6 x 2
  properties.referentie geometry.coordinates
  <chr>                                <dbl>
1 SDE1786673                            4.76
2 SDE1786673                           52.3 
3 SDE1625351                            6.01
4 SDE1625351                           52.0 
5 SDE1636716                            4.52
6 SDE1636716                           52.1

我实际上想要在geometry.coordinates列中创建两列。

第一行和第二列包含以下值:c(4.75813599901064, 52.272456042152)所以我希望一列包含4.75813599901064,另一列包含该向量52.272456042152中的另一个值。它的lat和lon数据。

3 个答案:

答案 0 :(得分:2)

tidyverse的另一个解决方案:

df %>% 
  unnest() %>% 
  group_by(properties.referentie) %>% 
  summarise(lat = first(geometry.coordinates), lon = last(geometry.coordinates))

# A tibble: 3 x 3
  properties.referentie   lat   lon
  <chr>                 <dbl> <dbl>
1 SDE1625351             6.01  52.0
2 SDE1636716             4.52  52.1
3 SDE1786673             4.76  52.3

答案 1 :(得分:1)

unnest之后,我们可以spread到'广泛'格式

library(tidyverse)
df %>% 
  unnest(geometry.coordinates) %>% 
  group_by(properties.referentie) %>% 
  mutate(rn = paste0("geometry.coordinates", row_number())) %>% 
  spread(rn, geometry.coordinates)
# A tibble: 3 x 3
# Groups: properties.referentie [3]
#    properties.referentie geometry.coordinates1 geometry.coordinates2    
#     <chr>                                 <dbl>                 <dbl>
# 1 SDE1625351                             6.01                  52.0
# 2 SDE1636716                             4.52                  52.1
# 3 SDE1786673                             4.76                  52.3

或者可以在unnest之前将其转换为list

df %>% 
    mutate(geometry.coordinates = map(geometry.coordinates,
                        ~as.list(.) %>% 
                           set_names(paste0("geometry.coordinates", seq_along(.x))) %>% 
                           as_tibble))  %>% 
    unnest
# A tibble: 3 x 3
#   properties.referentie geometry.coordinates1 geometry.coordinates2    
#    <chr>                                 <dbl>                 <dbl>    
# 1 SDE1786673                             4.76                  52.3
# 2 SDE1625351                             6.01                  52.0
# 3 SDE1636716                             4.52                  52.1

注意:这两种解决方案都适用于每个length元素中的任何list

答案 2 :(得分:0)

IIUC,您可以使用sapplyunlist一起创建列表类型列中的列。

cbind(df$properties.referentie,data.frame(t(sapply(df$geometry.coordinates,unlist))))
  df$properties.referentie       X1       X2
1               SDE1786673 4.758136 52.27246
2               SDE1625351 6.007208 51.97259
3               SDE1636716 4.517525 52.13934