프로젝트/코드프레소 체험단
파이썬으로 배우는 데이터 분석: Pandas - Pandas 라이브러리 소개
KimCookieYa
2022. 4. 1. 01:37
Pandas 라이브러리 소개
- 데이터 분석을 위한 파이썬 기반의 라이브러리
- 2차원 데이터를 효율적으로 가공 및 처리할 수 있는 강력한 라이브러리
pandas - Python Data Analysis Library
pandas pandas is a fast, powerful, flexible and easy to use open source data analysis and manipulation tool, built on top of the Python programming language. Install pandas now!
pandas.pydata.org
pandas is a fast, powerful, flexible and easy to use open source data analysis and manipulation tool, built on top of the Python programming language.
Pandas의 자료구조
- 자료구조란, 데이터를 저장하는 방식 또는 구조를 의미함
- Series
- DataFrame
Pandas 라이브러리 설치
# 둘 중 하나만 하면 된다.
> conda install pandas
> pip install pandas