import matplotlib.pyplot as plt
plt.bar( x, y, width = bar width, bottom = y start pt )


plt.pie( [pie size], labels = [labels], autopct = '%d', startangle = degree)
- autopct = %d (정수), %f (실수), %.2f / %1.2f, %0.2f (소수 2자리 실수)
- startangle 부터 CCW 방향으로.

- explode
- shadow
- colors
plt.axis('equal')
- x-axis / y-axis scale 동일


'공부는 언제까지 해야 하나' 카테고리의 다른 글
| [Python] matplotlib module - hist( ), boxplot( ), heatmap / Seaborn module (0) | 2021.02.05 |
|---|---|
| [Python] matplotlib module - scatter( ) (0) | 2021.02.04 |
| [Python] matplotlib module - plot( ) (0) | 2021.02.04 |
| [Python] pandas module - File IO (0) | 2021.02.04 |
| [Python] pandas module - Time Series Data (0) | 2021.02.04 |