320x100
# 문제 1
# Sort the cars DataFrame by the index from low to high. Save the order!
# index 기준으로 정렬 하는 법을 모르겠다.
# cars.sort_values(by = index)
# cars.sort_values(by = 'index')
# cars.sort_values(by = 'index', axis=1)
# cars.sort_values(by = row, axis=1)
# 그냥 간단하게 sort_index였다...
cars.sort_index(ascending= True, inplace=True)
# 틀린건 아니지만 취지에는 틀렸던 것 1
#Select the 10 cars with the highest weights!\
cars.sort_values(by = 'weight', ascending=False).head(10)
# 결론적으로 답은 맞았지만 여기서 원하는 해답은
cars.nlargest(n = 10, columns= 'weight')
# 유용 1
# Call an appropriate method on the __cars__ DataFrame that provides plenty of __summary statistics__!
cars.describe()
# 유용2
# Create a correlation matrix for the cars DataFrame! Which factor has the highest negative correlation to mpg?
cars.corr()
300x250
'개발일지 > Pandas' 카테고리의 다른 글
pandas 틀린부분 복기 5 apply, value_counts (0) | 2022.07.25 |
---|---|
pandas 판다스 기초11 slice, upper, lower, title등 Series의 경우에 작동하는 문법 (0) | 2022.07.25 |
pandas 판다스 rank, unique, nunique, count, 평균, 표준편차(mean, std), 상관계수 corr (0) | 2022.07.23 |
pandas 판다스 틀린부분 복기3 (0) | 2022.07.19 |
pandas 판다스 기초 11 체인인덱싱(chain indexing) 피하기, copy, 올바른 값 변경해주기 (0) | 2022.07.19 |