Pandas (2) 썸네일형 리스트형 메서드(method) 정리 [M1] append() ==> concat() pandas 공식문서에 의하면 append()는 버전 1.4.0 이후로 더이상 사용되지지 않게(deprecated)되었다. 이에 append()는 두가지로 대체 되어야 한다. 1. pandas버전을 1.4.0 이하로 변경한다. 2. append()를 concat()으로 재코딩한다. 위 두가지 방법 중 대체 되는 메서드에 대해 먼저 알아보자. concat()는 특정 축을 따라 padas 개체를 연결한다. 사용방법은 [DataFrame_data1.concat([,ignore_index=True]) 이다. 'ignore_index=True' : 생성된 DataFrame 데이터에는 데이터 순서대로 새로운 index가 할당된다. [M2] join() 다른 데이터프레.. loc VS iloc 판다스(Pandas)의 데이터 프레임의 메서드 중 loc와 iloc를 정리해봤다. 먼저, 각 메서드의 공식 정의는 다음과 같다. loc : Access a group of rows and columns by label(s) or a boolean array. iloc : Purely integer-location based indexing for selection by position. 정의를 통해 기억해야 하는 가장 중요한 차이는 loc는 라벨(lable), iloc는 정수(index) 기반 이라는 것이다. 각 메서드의 사용 방법은 샘플코드를 통해 알아보자. loc : https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.loc.html#pand.. 이전 1 다음