简体   繁体   中英

convert a list of vectors to data frame

I have a list of vectors. this vectors consists of names A1,A2.. and numeric values:

a <- list()
a$`p1`["A1"] <- 1
a$`p1`["A2"] <- 0.5
a$`p1`["A3"] <- 0.3
a$`p2`["A3"] <- 2
a$`p2`["A4"] <- 2.5
a$`p2`["A5"] <- 2.3

I wish to convert it to a data frame with the following structure

P <- c("p1","p1","p1","p2","p2","p2")
A <- c("A1","A2","A3","A3","A4","A5")
V <- c(1,0.5,0.3,2,2.5,2.3)
out <- data.frame(P,A,V)

Thanks:)

df_list = lapply(a, function(x) data.frame(A = names(x), V = x, stringsAsFactors = FALSE))
dplyr::bind_rows(df_list, .id = "P")
#    P  A   V
# 1 p1 A1 1.0
# 2 p1 A2 0.5
# 3 p1 A3 0.3
# 4 p2 A3 2.0
# 5 p2 A4 2.5
# 6 p2 A5 2.3

I like the way above, but here's an option that might be more efficient on a large list:

data.frame(V = unlist(a)) %>% 
  tibble::rownames_to_column() %>%
  tidyr::separate(rowname, into = c("P", "A"))

One purrr and tibble option could be:

map_dfr(a, ~ enframe(., name = "A", value = "V"), .id = "P")

  P     A         V
  <chr> <chr> <dbl>
1 p1    A1      1  
2 p1    A2      0.5
3 p1    A3      0.3
4 p2    A3      2  
5 p2    A4      2.5
6 p2    A5      2.3

In base-R

cbind(stack(a),A=unlist(lapply(a,names),use.names = F))

gives

  values ind  A
1    1.0  p1 A1
2    0.5  p1 A2
3    0.3  p1 A3
4    2.0  p2 A3
5    2.5  p2 A4
6    2.3  p2 A5

An option with base R

do.call(rbind, Map(cbind, lapply(a, stack), P = names(a)))

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM