Pandas는 데이터를 다루는데 있어 자주 사용되는 패키지이다. 주로 NumPy, SciPy, scikit-learn, matplotlib와 같이 사용한다. Pandas는 주로 NumPy의 스타일을 차용하였지만, NumPy는 단일 산술 배열 데이터를 다루는데 특화되어 있는 것과는 다르게 Pandas는 표(table), 시계열(series)등 다양한 형식의 데이터를 다루는데 초점을 맞춰 설계했다.
Pandas를 import할 때 컨밴션은 주로 다음과 같이 사용한다.
import pandas as pd
'Python > pandas' 카테고리의 다른 글
1-3. Pandas.Series - Pandas.Series.isnull (2) | 2022.03.12 |
---|---|
1-2. Pandas.Series - index를 이용한 데이터 다루기 (0) | 2022.03.12 |
1-1. Pandas.Series - parameter 설명 (0) | 2022.03.10 |