본문 바로가기
파이썬. 데이터분석/Matplotlib

matplotlib : 원그래프(파이그래프)

by 한국수달보호협회장 2022. 7. 13.

 

 

values = [30, 25, 20, 13, 10, 2]
labels = ['Python', 'Java', 'Javascript', 'C#', 'C/C++', 'ETC']

plt.pie(values, labels= labels, autopct='%.2f%%', counterclock=False)
plt.show()

 

 

 

values = [30, 25, 20, 13, 10, 2]
labels = ['Python', 'Java', 'Javascript', 'C#', 'C/C++', 'ETC']
explode = [0.05] * 6

plt.pie(values, labels= labels, autopct='%.2f%%', explode=explode, counterclock=False)
plt.legend()

plt.show()

 

 

 

 

values = [30, 25, 20, 13, 10, 2]
labels = ['Python', 'Java', 'Javascript', 'C#', 'C/C++', 'ETC']
explode = [0.05] * 6

plt.pie(values, labels= labels, autopct='%.2f%%', explode=explode, counterclock=False)
plt.legend(loc=(1.2, 0.3), title='언어')
plt.title('언어별 선호도')

plt.show()