python내장 리스트와 달리 인덱스값을 사용자가 지정할 수 있다.
기존 python의 리스트
list_temp = [1,2,3,4,5]
list_temp[0] = 1
pandas의 Series 개체
series_temp = Series([1,2,3,4,5], index=['01','02','03','04','05'])
Series 개체의 접근 시 index와 value로 접근 가능
for idx in series_temp.values:
print(idx)
for value in series_temp.index:
print(idx)
Series 개체가 index를 임의로 정함으로 인해 가질 수 있는 장점으로 인해 얻을 수 있는 또하나의 형태
series_temp_a = Series([1,2,3,4,5], index=
['01','02','03','04','05'])
series_temp_b = Series([4,2,3,1,5], index=['01','02','03','04','05'])
print(series_temp_a + series_temp_b)
'프로그래밍' 카테고리의 다른 글
python dictionary의 키만 복사 사용 (0) | 2020.12.22 |
---|---|
pandas의 DataFrame개체 다루기 (0) | 2020.12.21 |
TortoiseSVN를 이용한 프로젝트 업로드(eclipse의 share) (0) | 2019.08.28 |
IIS 서버 호출시 기본 디렉터리 탐색현상 처리 (0) | 2019.07.23 |
Spring boot mongo DB replica set 설정하기, xml에서 java config로 전환 (0) | 2019.02.20 |