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