我有一些 R 代码,它使用以下代码对当前目录中的所有文件执行一些数据提取操作:
files <- list.files(".", pattern="*.tts")
results <- lapply(files, data_for_time, "17/06/2006 12:00:00")
lapply 的输出如下(使用 提取dput()
) - 基本上是一个充满向量的列表:
list(c("amer", "14.5"), c("appl", "14.2"), c("brec", "13.1"),
c("camb", "13.5"), c("camo", "30.1"), c("cari", "13.8"),
c("chio", "21.1"), c("dung", "9.4"), c("east", "11.8"), c("exmo",
"12.1"), c("farb", "14.7"), c("hard", "15.6"), c("herm",
"24.3"), c("hero", "13.3"), c("hert", "11.8"), c("hung",
"26"), c("lizr", "14"), c("maid", "30.4"), c("mart", "8.8"
), c("newb", "14.7"), c("newl", "14.3"), c("oxfr", "13.9"
), c("padt", "10.3"), c("pbil", "13.6"), c("pmtg", "11.1"
), c("pmth", "11.7"), c("pool", "14.6"), c("prae", "11.9"
), c("ral2", "12.2"), c("sano", "15.3"), c("scil", "36.2"
), c("sham", "12.9"), c("stra", "30.9"), c("stro", "14.7"
), c("taut", "13.7"), c("tedd", "22.3"), c("wari", "12.7"
), c("weiw", "13.6"), c("weyb", "8.4"))
但是,我想将此输出作为具有两列的数据框处理:一列用于字母代码("amer"
等"appl"
),另一列用于数字(14.5
等14.2
)。
不幸的是,as.data.frame
似乎不适用于列表中嵌套向量的输入。我应该如何进行转换?我是否需要更改函数data_for_time
返回值的方式?目前它只是返回c(name, value)
。或者有没有一种很好的方法可以将这种输出转换为数据框?