프레임 속에 있는 수많은 데이터 중에, 내가 원하는 대상의 데이터만 골라 새로운 프레임으로 만들고 싶다. (마치 DB에서 where 절을 지정하여 쿼리를 날리듯) 위와 같은 동작은 판다스에서는 loc 프로퍼티로 수행할 수 있다. pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.loc.html pandas.DataFrame.loc — pandas 1.2.1 documentation A slice object with labels, e.g. 'a':'f'. Warning Note that contrary to usual python slices, both the start and the stop are included pandas.py..