250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 게시판 만들기
- Topics
- java
- 네이버뉴스
- 자바
- 파이썬
- spring MVC(모델2)방식
- 幼稚园杀手(유치원킬러)
- 크롤링
- tomoto
- Gmarket
- test
- 방식으로 텍스트
- mysql
- jsp 파일 설정
- pytorch
- 토픽추출
- RESFUL
- oracle
- 코사인 유사도
- (깃)git bash
- db
- 지마켓
- Python
- word2vec
- 이력서
- r
- 과학백과사전
- Websocket
- lda
Archives
- Today
- Total
무회blog
pandas,지정폴더, 엑셀 한번에 읽기, 시트포함 본문
# 첫번째 시트를 기준으로 전부 읽기
import os
import pandas as pd
dir = 'data/'
filenames = os.listdir(dir)
index = 0
dfs = []
for name in filenames:
print(index)
dfs.append(pd.read_excel(os.path.join(dir,name)))
index += 1 #为了查看合并到第几个表格了
df = pd.concat(dfs)
df.to_excel('data/total.xlsx',index = False)
# 지정폴더안 엑셀 한번에 읽기, 모든 시트
import os
import pandas as pd
read_path = './../test_data/test_duoyidian/'
dir = read_path
filenames = os.listdir(dir)
filenames
index = 0
dfs = []
read_file = 'test_Newsdata-100.xlsx'
read_path = './../test_data/'
df_list = [pd.read_excel(read_path+read_file, sheet_name = x) for x in range(6)]
df_list = [df_list[x][['subMenu', 'newsFrom', 'title', 'content', 'yoyag']] for x in range(6)]
df_ = pd.concat(df_list, axis=0)
for name in filenames:
print(index)
df_list = [pd.read_excel(os.path.join(dir,name),sheet_name = x)for x in range(6)]
df_list = [df_list[x][['subMenu', 'newsFrom', 'title', 'content', 'yoyag']] for x in range(6)]
df_ = pd.concat(df_list, axis=0)
allExcelFile = df_
# allExcelFile = pd.read_excel(os.path.join(dir,name))
dfs.append(allExcelFile)
index += 1 #为了查看合并到第几个表格了
df = pd.concat(dfs)
print(len(df))
df.to_excel('./total_excel.xlsx')
'Python' 카테고리의 다른 글
파이썬 ,코드 읽고 파일 경로 열기 , # import 된 모듈의 지정된 경로 아래 파일을 오픈하기 ,지정경로 파일 열기 (0) | 2020.07.31 |
---|---|
200724-cluster,문서분류,파일, (0) | 2020.07.24 |
cluster-,문서분류,예측,TfidfVectorizer,LinearSVC-004 (0) | 2020.07.22 |
cluster-,군집분류,LogisticRegression ,RandomForestClassifier,MultinomialNB,LinearSVC-003-02 (0) | 2020.07.22 |
clustering-test00-군집분류,및 분류예측기-002,한파트흐름 (0) | 2020.07.20 |
Comments