반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Kotlin
- gas
- c#
- google apps script
- Java
- django
- SQL
- PostgreSQL
- hive
- Github
- Mac
- Apache
- PySpark
- Redshift
- matplotlib
- Tkinter
- PANDAS
- GIT
- list
- Excel
- string
- Python
- array
- Google Spreadsheet
- 파이썬
- Google Excel
- math
- dataframe
- numpy
Archives
- Today
- Total
목록Pie (1)
달나라 노트
Python matplotlib : pie (matplotlib로 pie 차트 그리기, pie chart, matplotlib pie chart)
matplotlib에서는 원형 그래프인 pie chart를 그리는 기능도 제공합니다. import matplotlib.pyplot as plt labels = ['Cake', 'Chocolate', 'Candy', 'Macaroon', 'Waffle'] values = [20, 35, 10, 50, 20] plt.pie(values, labels=labels) plt.show() 사용법은 굉장히 간단합니다. value를 list에 담고 각 value들에 대한 수치(label)를 list에 담아서 pie method에 전달해주면 됩니다. import matplotlib.pyplot as plt labels = ['Cake', 'Chocolate', 'Candy', 'Macaroon', 'Waffle'] v..
Python/Python matplotlib
2022. 1. 17. 22:46