Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 웹크롤링
- 위도경도
- 숫자빼고 중복되는 코드동작법
- #위도#경도#비정형데이터#크롤링
- 코딩
- 파이썬 셀레니움
- 웹매크로 #세잔느
- 구글 지오코드
- #비정형#카카오api#api#크롤링
- 파이썬
- 셀레니움
- 카카오APi
- #K-means #Clustering
- #비정형 데이터 #네이버 #지도 #크롤링
- #크롤링 #웹문서
Archives
- Today
- Total
지방이의 Data Science Lab
[R] 한 폴더 안에 있는 데이터를 몽땅 한 데이터 프레임으로 불러오기 본문
R: 한 파일안에 있는 데이터를 몽땅 한 데이터 프레임으로 불러오기library(progress)library(readr)library(dplyr)options(encoding = 'UTF-8')Sys.setenv(LANG = "en_US.UTF-8")files <- list.files(pattern = "csv$") #read all csv file names in working directorypb <- progress_bar$new(total = length(files)) #setting progress barrowN <- 10000 #setting row numbertempDf <- data.frame(index=rep(0,rowN)) #initiate data framefor(i in 1:length(files)){ #loop in all csv filespb$tick() #single tick in progress barcon = file(files[i], "r") #open filetempCol <-read.csv((con), nrows=rowN) #get datacolnames(tempCol) <- c(substr(files[i],1,nchar(files[i])-4)) #adjusting column name as file nametempDf <- cbind(tempDf,tempCol) #merging dataclose(con) #closing file}CUSTINFO <- tempDf[,-1] #deleting index columnrm(tempDf)
'Data Analysis > 깨R지식' 카테고리의 다른 글
[R] 특정 고객 데이터 추출 (0) | 2019.06.25 |
---|---|
R: package 직접 설치 (0) | 2019.05.02 |
[R] 빅데이터 dcast 램문제를 해결할 수 있는 코딩 (0) | 2019.04.07 |
[R] 범주형 숫자형 대용량 데이터 처리 방법 (0) | 2019.04.04 |
[R] 1/1~12/31까지 존재하는 파일들을 한번에 불러와서 합치기 (0) | 2019.03.18 |
Comments