Data & MarTech/Data Analysis (2) 썸네일형 리스트형 [Pandas] CSV 파일 합치기 및 정제하기 [Pandas] CSV 파일 합치기 및 정제하기 들어가며 동일한 스키마를 가진 CSV 파일이 여러개인 경우가 있어 판다스 데이터프레임(Pandas DataFrame)을 이용해 파일을 합친 다음 정제하는 과정이 필요할 경우 본 포스트내용을 참고하시기 바랍니다. CSV 처리를 위한 Pandas 상세 설명 Python 환경설정 virtualenv 생성 및 활성화 # 가상환경 생성 virtualenv venv # 가상환경 실행 source venv/bin/activate jupyter notebook 설치 pip install jupyter pandas 라이브러리 설치 pip install pandas Pandas 개발 CSV 파일 조회 합칠 파일을 배열에 추가합니다. 루프에서 각 csv_file을 읽은 다음 .. [데이터시각화] Matplotlib - Ticks 적용하기 [데이터시각화] Matplotlib - Ticks 적용하기 Ticks xticks Get or set the x-limits of the current tick locations and labels. yticks Get or set the y-limits of the current tick locations and labels. plt.yticks([0,1,2], ["one","two","three"]) 전체코드 # Scatter plot plt.scatter(gdp_cap, life_exp) # Previous customizations plt.xscale('log') plt.xlabel('GDP per Capita [in USD]') plt.ylabel('Life Expectancy [in years.. 이전 1 다음