matplotlib(2)
-
[matplotlib] 컬러맵
Colormaps https://matplotlib.org/stable/tutorials/colors/colormaps.html Test - Using Bubble Chart... # marker='+', cmap='plasma' df.plot(kind='scatter', x='weight', y='mpg', marker='+', figsize=(10,5), cmap='plasma', c=cylinders_size, s=cylinders_size, alpha=0.24) # cmap=‘Pastel1’, alpha=0.24 df.plot(kind='scatter', x='weight', y='mpg', figsize=(10,5), cmap='Pastel1', c=cylinders_size, s=cylinde..
2022.12.22 -
[python, matplotlib] 그래프 각 요소별 명칭
[출처] https://matplotlib.org/stable/gallery/showcase/anatomy.html
2022.12.22