colors : 색상 지정
textprops : 폰트 옵션 지정
startangle: 각도 조절(그래프가 얼만큼 돈 상태에서 시작하는지 여부)
shadow: 그림자 여부
autopct: 파이 조각별로 값 표시
#labels = df15['지역구분'].value_counts().index.tolist()
ratio = df15['지역구분'].value_counts().values.tolist()
explode = [0, 0.05, 0, 0.2, 0.7, 0.4]
colors = ['#ff9999','#66b3ff','#99ff99','#ffcc99','#f5316c','#ffb8f9']
plt.pie(ratio, explode=explode, autopct='%1.2f%%', shadow=False,
textprops={'fontsize': 15, 'color':'#383435', 'weight':'bold'}, startangle=30,
colors=colors,
pctdistance=0.8)
plt.rcParams["figure.figsize"] = (7,7)
plt.rcParams['font.size'] =15
#draw circle
centre_circle = plt.Circle((0,0),0.6,fc='white')
fig = plt.gcf()
fig.gca().add_artist(centre_circle)
plt.title('지역별 은행 비율',weight='bold',size=18, pad=20)
plt.legend(labels=labels, loc='lower right', bbox_to_anchor=(1.2, 0))
#plt.axis('equal') #비율 같게 조정
plt.show()
'Python' 카테고리의 다른 글
[Python] tqdm (0) | 2022.11.28 |
---|---|
[Python] Groupby로 묶은 df 다시 되돌리기 (0) | 2022.11.22 |
Pandas 기초 EDA (0) | 2022.11.14 |
[Python] 판다스 pandas 열 이름 변경 (0) | 2022.10.31 |
[Python] Colab seaborn 한글 인코딩 깨짐 (0) | 2022.07.04 |