판다스는 안해보면 까먹는 도구입니다. 데이터캠프로 공부한 내용을 다시 정리해봤습니다. 판다스로 특정 열(column)의 평균과 중앙값 찾기 가령, sales라는 데이터프레임이 있습니다. 내부를 확인해보고, 평균과 중앙값을 볼 수 있습니다. 특정 컬럼을 기준으로 볼 수 있죠. # Print the head of the sales DataFrame print(sales.head()) # Print the info about the sales DataFrame print(sales.info()) # Print the mean of weekly_sales print(sales["weekly_sales"].mean()) # Print the median of weekly_sales def pct50(column)..