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 |
Tags
- python visualization
- 파이썬
- Pandas
- 파이썬 시각화
- Linux
- MySQL
- 월간결산
- 서평
- Ga
- 통계학
- MATLAB
- Google Analytics
- 시각화
- Blog
- 티스토리
- 리눅스
- 텐서플로
- matplotlib
- tensorflow
- Python
- 한빛미디어
- 서평단
- 한빛미디어서평단
- SQL
- Visualization
- 블로그
- 매틀랩
- 독후감
- Tistory
- 딥러닝
Archives
- Today
- Total
목록python text (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