[python] pandas
Ver. Jupyter Notebook (Anaconda3) ▶ pandas ● 데이터 유형 - 1차원(Series) : 한 줄 (행or열) - 2차원(Dataframe) : 두 줄 (행, 열) import pandas as pd# 시리즈, 데이터프레임 데이터분석 라이브러리 import numpy as np# 숫자, 행렬 라이브러리 ▶ Series: 1차원 데이터 - A one-dimensional labeled array capable of holding any data type s = pd.Series([3, -5, np.nan, 4], index=['a', 'b', 'c', 'd']) ▶ DataFrame (2차원 데이터) - A two-dimensional labeled data structure..
2021.04.28