본문 바로가기
Python Library/Pandas

판다스 (Pandas)

by goatlab 2022. 2. 15.
728x90
반응형
SMALL

판다스 (Pandas)

 

판다스 (Pandas)는 python 데이터 처리를 위한 라이브러리입니다. python을 이용한 데이터 분석과 같은 작업에서 필수 라이브러리이다.

 

pip install pandas

 

Pandas는 총 세 가지의 데이터 구조를 사용한다.

 

  • 시리즈 (Series)

  • 데이터프레임 (DataFrame)

  • 패널 (Panel)

 

이 중 데이터프레임이 가장 많이 사용된다.

 

https://pandas.pydata.org/pandas-docs/stable/#

 

pandas documentation — pandas 1.4.1 documentation

The reference guide contains a detailed description of the pandas API. The reference describes how the methods work and which parameters can be used. It assumes that you have an understanding of the key concepts.

pandas.pydata.org

 

728x90
반응형
LIST

'Python Library > Pandas' 카테고리의 다른 글

[Pandas] 데이터프레임 고급 인덱싱  (0) 2022.02.15
[Pandas] 데이터 입출력  (0) 2022.02.15
[Pandas] 데이터프레임 (DataFrame)  (0) 2022.02.15
[Pandas] 시리즈 (Series) (2)  (0) 2022.02.15
[Pandas] 시리즈 (Series) (1)  (0) 2022.02.15