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
- 파이썬
- 서평
- 서평단
- MATLAB
- Tistory
- SQL
- Python
- 시각화
- 블로그
- MySQL
- 통계학
- 리눅스
- Visualization
- tensorflow
- 독후감
- 한빛미디어서평단
- Blog
- 한빛미디어
- python visualization
- 텐서플로
- 매틀랩
- matplotlib
- Linux
- 딥러닝
- 월간결산
- Ga
- Google Analytics
- 파이썬 시각화
- 티스토리
- Pandas
Archives
- Today
- Total
목록python label (1)
pbj0812의 코딩 일기
[PYTHON] bar 그래프에 백분율 표시하기
0. 목표 - bar 그래프에 백분율 표시하기 1. 실습 1) library 호출 import pandas as pd import matplotlib.pyplot as plt 2) 데이터 프레임 생성 df = pd.DataFrame({'date' : ['2017', '2018', '2019', '2020'], 'A' : [150, 200, 225, 270], 'B' : [30, 45, 52, 60]}) df['total'] = df['A'] + df['B'] df['A_percent'] = round(df['A'] / df['total'] * 100, 1) df['B_percent'] = round(100 - df['A_percent'], 1) 3) 그림 그리기 fig, ax = plt.subplots(..
ComputerLanguage_Program/PYTHON
2021. 7. 22. 02:47