【发布时间】:2020-09-16 07:20:29
【问题描述】:
我有数百个带有 .txt 扩展名的每日天气数据,常用文件夹中的逗号 (",") 作为分隔符。每个文件具有相同的数据结构,但文件名不同。下面是数据结构的一个例子:
$ year : int 1980 1980 1980 1980 1980 1980 1980 1980 1980 1980 ...
$ month : int 1 1 1 1 1 1 1 1 1 1 ...
$ day : int 1 2 3 4 5 6 7 8 9 10 ...
$ V1 : num 18.4 22.9 19.9 22.9 23.4 9.8 13.9 17.5 20.3 22.7 ...
$ V2 : num 30.8 31.5 31.4 31.3 31.5 29.8 30.1 30.6 30.5 31.1 ...
$ V3 : num 23.4 23.7 23.2 23.3 23.4 22.9 23 23.4 23.1 23.2 ...
$ V4 : num 2.2 0 0 0 0.9 3.6 3.5 3.7 1.2 0 ...
$ V5 : num 0.93 0.86 0.88 0.87 0.87 0.98 1 0.96 0.96 0.91 ...
$ V6 : num 1.6 3.5 5.2 5.5 3.9 4.2 4.2 4.9 4.9 4.4 ...
我需要对每个文件中的一个变量(比如说 V4)的总月数进行汇总。而每个文件想要的输出数据结构是这样的(第一列是年,第二列是月,第三列是V4每天的总和):
Year 1 Month 1 22.1
Year 1 Month 2 82.4
Year 1 Month 3 142.8
Year 1 Month …etc 314
Year 2 Month 1 48.9
Year 2 Month 2 173.6
Year 2 Month 3 76.2
Year 2 Month …etc 517.4
Year 3 Month 1 117.8
Year 3 Month 2 20.1
Year 3 Month 3 169.8
Year 3 Month …etc 191.5
然后我需要将结果导出为所有文件中的唯一 .txt 文件,新文件的名称根据每个文件的原始文件(例如:before_file1.txt 到 result_file1.txt)。 我有一个使用 Purrr 的脚本,但似乎没有发生任何事情。请如果您愿意帮助我用正确的方法改进脚本。谢谢
# Load packages
library(tidyverse)
library(dplyr)
library(purrr)
# Setting working directory
workingdirectory <- "D:/Directory"
setwd(workingdirectory)
# Listing the files in the folder with .txt extension
FilesList <- list.files(workingdirectory, pattern = "\\.txt$", full.names = TRUE)
# Looping per files
purrr::map(FilesList, ~{
.x %>%
# Read csv file
read.csv(sep = ",", header = FALSE, stringsAsFactors = FALSE) %>%
# select variables
variables <- c("year", "month", "day", "V4") %>%
# summarize monthly of V4
group_by(month, year) %>%
summarise(monthly = sum(V4)) %>%
})
# Write the data back
write.csv(paste0('Result_', basename(.x)), sep = ",", row.names = FALSE)
我已编辑脚本,但出现错误。请帮助修复它。谢谢
Error: unexpected '}' in:
"
}"
>
> # Write the data back
> write.csv(paste0('TM_', basename(.x)), sep = ",", row.names = FALSE)
Error in basename(.x) : object '.x' not found
In addition: Warning message:
In write.csv(paste0("TM_", basename(.x)), sep = ",", row.names = FALSE) :
attempt to set 'sep' ignored
【问题讨论】:
-
此代码不完整。 purrr::map 函数永远不会关闭。你需要一个
})(你实际上根本不需要{。如果没有关闭函数,它就不会运行(不确定这只是这篇文章的错字还是在你的实际代码中?)跨度> -
谢谢,我忘了在 purrr 的末尾提到 })。运行后,我收到此错误: Error: unexpected '}' in: " }" 。而这个错误。 basename(.x) 中的错误:找不到对象 '.x' 另外:警告消息:在 write.csv(paste0("TM_", basename(.x)), sep = "", row.names = FALSE) : 尝试设置 'sep' 被忽略
标签: r loops dataframe aggregate summarize