PYTHON/pandas

    (Pandas/Study) Chapter 3. Input/Output - Read Excel(엑셀 데이터 불러오기)

    (Pandas/Study) Chapter 3. Input/Output - Read Excel(엑셀 데이터 불러오기)

    Pandas는 DataFrame, Series, Index 등 행/열의 개념이 있는 '정형화된' 데이터를 처리하고 분석하는 라이브러리 입니다. 판다스에서 불러올 수 있는 파일의 종류는 다양하지만 대표적인 파일 형식인 엑셀 불러오기에 대해 상세히 알아보도록 하겠습니다. Read Excel Data(엑셀 데이터 불러오기) pandas 모듈을 import 해야 합니다. read_excel로 엑셀 파일을 dataframe 형태로 불러올 수 있습니다. 'df_변수명'의 형태로 변수명을 만든다면 datatype을 쉽게 구분 하실 수 있습니다. xls, xlsx, xlsm, xlsb, odf, ods and odt 등의 파일 확장자를 지원합니다. 단일 시트 또는 시트 목록을 읽는 옵션을 지원합니다. Pandas 모듈..

    (Pandas/Study) Chapter 2. 판다스 모듈 불러오기(Load Pandas)

    (Pandas/Study) Chapter 2. 판다스 모듈 불러오기(Load Pandas)

    "Life is too short, You need python" Pandas(판다스)를 설치하셨다면 이번 시간에는 라이브러리를 Import 해 오는 방법에 대해 공부해 보겠습니다. Use Pandas Package , 판다스 불러오기 To load the pandas package and start working with it, import the package. The community agreed alias for pandas is pd, so loading pandas as pd is assumed standard practice for all of the pandas documentation. 설치하신 Pandas를 사용하시기 위해서는 아래와 같이 Import를 통해 모듈을 호출하셔야 합니다. ..

    (Pandas/Study) Chapter 1. Introduction - Pandas(판다스)

    (Pandas/Study) Chapter 1. Introduction - Pandas(판다스)

    "Life is too short, You need python"Pandas(판다스)는 파이썬에서 데이터를 처리하기 위해 가장 필수적이며, 유용한 라이브러리입니다. 엑셀로 데이터를 처리하는 과정에서 한계를 체감했거나 답답해지는 순간에 직면한 경험이 있다면 Pandas는 최선의 선택입니다. 해당 카테고리에서는 Pandas의 기본 사용법들을 익히고 전처리에 어떤 방식으로 활용되는지 공부해 보도록 하겠습니다. 목차Introduction - Pandas, 판다스란 무엇인가?Pandas is a fast, powerful, flexible and easy to use open source data analysis and manipulation tool, built on top of the Python progra..