第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

使用rbind將多個.csv文件加載到R中的單個數(shù)據(jù)幀中的函數(shù)有什么問題?

使用rbind將多個.csv文件加載到R中的單個數(shù)據(jù)幀中的函數(shù)有什么問題?

智慧大石 2019-11-30 14:12:04
我編寫了以下函數(shù)來組合300個.csv文件。我的目錄名稱是“ specdata”。我已經(jīng)完成了以下執(zhí)行步驟,x <- function(directory) {         dir <- directory        data_dir <- paste(getwd(),dir,sep = "/")        files  <- list.files(data_dir,pattern = '\\.csv')        tables <- lapply(paste(data_dir,files,sep = "/"), read.csv, header = TRUE)        pollutantmean <- do.call(rbind , tables)         }# Step 2: call the functionx("specdata")# Step 3: inspect resultshead(pollutantmean)Error in head(pollutantmean) : object 'pollutantmean' not found我怎么了 誰能解釋一下?
查看完整描述

3 回答

?
梵蒂岡之花

TA貢獻(xiàn)1900條經(jīng)驗(yàn) 獲得超5個贊

```{r echo = FALSE, warning = FALSE, message = FALSE}


setwd("~/Data/R/BacklogReporting/data/PastDue/global/") ## where file are located


path = "~/Data/R/BacklogReporting/data/PastDue/global/"

out.file <- ""

file.names <- dir(path, pattern = ".csv")

for(i in 1:length(file.names)){

  file <- read.csv(file.names[i], header = TRUE, stringsAsFactors = FALSE)

  out.file <- rbind(out.file, file)

}


write.csv(out.file, file = "~/Data/R/BacklogReporting/data/PastDue/global/global_stacked/past_due_global_stacked.csv", row.names = FALSE) ## directory to write stacked file to


past_due_global_stacked <- read.csv("C:/Users/E550143/Documents/Data/R/BacklogReporting/data/PastDue/global/global_stacked/past_due_global_stacked.csv", stringsAsFactors = FALSE)


files <- list.files(pattern = "\\.csv$") %>%  t() %>% paste(collapse = ", ")

```


查看完整回答
反對 回復(fù) 2019-11-30
  • 3 回答
  • 0 關(guān)注
  • 715 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號