pandas2 Python pandas - DataFrame PDS 함수 색인(Indexing) DataFrame pds을 indexing 하기 위한 method로는 loc, iloc, at, iat 네 가지가 있습니다. 아래 예제를 통해 살펴보겠습니다. iloc, iat은 index를 사용해서 값을 가져오며 loc, at은 key, column명으로 값을 가져오는 것을 알 수 있습니다. - 하나씩 가져오기 - 한개의 column 가져오기 >> df.loc[:]['Age'] 11 45 12 36 13 21 Name: Age, dtype: int64 >> df['Age'] 11 45 12 36 13 21 Name: Age, dtype: int64 >> df.Age 11 45 12 36 13 21 Name: Age, dtype: int64 - 두 개 이상의 Column 가져오기 .. 2023. 1. 29. Python pandas - Series/DataFrame PDS Pandas Data Structure Pandas library는 주로 숫자에 특화된 Numpy에 비해 더 일반적으로 다양한 data type을 다룰 수 있는 tool입니다. Series형 Pandas Data Structure(PDS) pd.Series() class 생성자에 입력 인자로 Python list나 dictionary를 넣어 실행시켜 instance(class)를 만듭니다. >> import pandas as pd; >> ds1 = pd.Series([4, 2, 1]) >> ds1 0 4 1 2 2 1 dtype: int64 >> ds1.values array([4, 2, 1]) >> ds1.index RangeIndex(start=0, stop=3, step=1) indexing 방법은.. 2023. 1. 27. 이전 1 다음 반응형