320x100
# 문제1
# Create the graph below (lineplot for all numerical columns)!
# subplots, sharex에 대한 기능이 생각이 안났었다.
cars.plot(figsize = (14,10), subplots = True, sharex = False)
plt.show()
# 문제2
# Create the graph below (Scatterplot with horsepower and mpg)! Fill in the gaps!
# 내 코드
cars.plot(kind = 'scatter', x = 'horsepower', y = 'mpg', figsize = (12,10),
c = 'cylinders', marker = 'x', colormap = "viridis")
plt.title('compare between horsepwer and mpg', fontsize = 18)
plt.xlabel("horsepower", fontsize = 15)
plt.ylabel("mpg", fontsize = 15)
plt.show()
# 음... x축의 표시값이 왜 다 잘려나오는거지?
# 해설 코드
cars.plot(kind = 'scatter', x = 'horsepower', y = 'mpg', figsize = (12,8),
c = 'cylinders', marker = 'x', colormap = 'viridis')
plt.show()
# 해설코드도 x축값이 잘려나오네;
# 음.. 뭔가 기본설정에 문제가 있는듯 하다.
300x250
'개발일지 > Pandas' 카테고리의 다른 글
pandas 판다스 기초 14 import excel (0) | 2022.07.27 |
---|---|
pandas 판다스 기초 13 import CSV file (0) | 2022.07.26 |
pandas 판다스 기초 12 Matplotlib (0) | 2022.07.26 |
pandas 틀린부분 복기 5 apply, value_counts (0) | 2022.07.25 |
pandas 판다스 기초11 slice, upper, lower, title등 Series의 경우에 작동하는 문법 (0) | 2022.07.25 |