판다스 기본 학습
# 인덱스 차이 pd_series = pd.Series([1, 2, 3, 4], index=["일", "이", "삼", "사"]) pd_series_no_idx = pd.Series([1, 2, 3, 4]) index 있을 때 일 1 이 2 삼 3 사 4 dtype: int64 index 없을 때 0 1 1 2 2 3 3 4 dtype: int64 range pd.Series(range(100, 110)) 0 100 1 101 2 102 3 103 4 104 5 105 6 106 7 107 8 108 9 109 dtype: int64 인덱스 접근 pd_series.index Index(['일', '이', '삼', '사'], dtype='object') 값 접근 pd_series.values array([..
2023. 2. 19.