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
- 매틀랩
- 서평
- 리눅스
- 딥러닝
- 서평단
- 파이썬 시각화
- Linux
- Tistory
- MySQL
- 티스토리
- 텐서플로
- Google Analytics
- Blog
- matplotlib
- 시각화
- 통계학
- SQL
- MATLAB
- Visualization
- python visualization
- 블로그
- 독후감
- Ga
- Python
- 월간결산
- Pandas
- 파이썬
- 한빛미디어서평단
- tensorflow
- 한빛미디어
Archives
- Today
- Total
목록로그 스케일 (1)
pbj0812의 코딩 일기
[PYTHON] 로그 스케일로 그림 그리기
0. 목표 - 로그 스케일로 그림 그리기 1. 실습 1) library 호출 import matplotlib.pyplot as plt import matplotlib import matplotlib.colors as colors import numpy as np 2) 그림 그리기 fig, ax = plt.subplots() ax.set_xscale('log') ax.set_yscale('log') people = np.array([1, 10, 100]) pcm = ax.scatter([1, 10, 100], [1, 10, 100], c = people, norm=colors.LogNorm(vmin=people.min(), vmax=people.max())) fig.colorbar(pcm, ax=ax, e..
ComputerLanguage_Program/PYTHON
2022. 7. 23. 14:09