【发布时间】:2018-04-26 19:33:05
【问题描述】:
我正在尝试将命名数字列表作为 data.frame 以便在 ggplot2 中进行绘图。我的列表如下所示:
dat <- list()
dat[[1]] <- c( 816, 609, 427, 426, 426, 419, 390, 353, 326, 301)
dat[[2]] <- c(96, 95, 94, 74, 66, 59, 51, 50, 43, 42)
dat[[3]] <- c(2219, 1742, 1689, 1590, 995, 823, 587, 562, 554, 535)
names(dat[[1]]) <-
c("new york city", "new york times", "amazon services llc", "services llc amazon",
"llc amazon eu", "couple weeks ago", "incorporated item pp", "two years ago",
"new york n.y", "world war ii")
names(dat[[2]]) <-
c("new york city", "president barack obama", "two years ago" ,
"st louis county", "gov chris christie", "first time since" ,
"world war ii", "three years ago", "new york times", "four years ago")
names(dat[[3]]) <-
c("let us know", "happy mothers day", "happy new year",
"happy mother's day", "cinco de mayo", "looking forward seeing",
"just got back", "keep good work", "come see us", "love love love")
names(dat) <- c("blogs","news","twitter")
dat
我已经尝试unlist() 这个数据,我知道有一个简单的方法可以做到这一点。也许在 data.table 或 dplyr 中。但我总是得到有趣的结果。
想要的形式是:
dat1 <- data.frame(ngram = c("new york city", "new york times", "amazon services llc", "services llc amazon",
"llc amazon eu", "couple weeks ago", "incorporated item pp", "two years ago",
"new york n.y", "world war ii"),
freq = c( 816, 609, 427, 426, 426, 419, 390, 353, 326, 301),
text = c("Blogs"))
dat2 <- data.frame(ngram = c("new york city", "president barack obama", "two years ago" ,
"st louis county", "gov chris christie", "first time since" ,
"world war ii", "three years ago", "new york times", "four years ago"),
freq = c(96, 95, 94, 74, 66, 59, 51, 50, 43, 42),
text = "News")
dat3 <- data.frame(ngram = c("let us know", "happy mothers day", "happy new year",
"happy mother's day", "cinco de mayo", "looking forward seeing",
"just got back", "keep good work", "come see us", "love love love"),
freq = c(2219, 1742, 1689, 1590, 995, 823, 587, 562, 554, 535),
text = "Twitter")
dat <- rbind(dat1,dat2,dat3)
dat
【问题讨论】: