파이썬 스케일이 다른 그래프
파이썬 스케일이 다른 두개의 값 그리기
코드
import matplotlib.pyplot as plt
fig, ax1 = plt.subplots()
ax1.plot(df["..."])
# ...
ax2 = ax1.twinx()
ax2.plot(df["Market"])
ax2.set_ylim([0, 5])
# http://matplotlib.org/examples/api/two_scales.html
'Python > Python 프로그래밍' 카테고리의 다른 글
파이썬(Python) 리스트 모든 조합 구하기 (combination vs permutations vs product) (0) | 2021.04.28 |
---|---|
파이썬(Python) 한글 문자 길이 (0) | 2021.04.28 |
C를 Python으로 Wrapping하는 방법 (0) | 2021.04.28 |
파이썬 HTML 파싱 하는 방법 (0) | 2021.04.28 |
파이썬 디렉토리 생성 코드 (0) | 2021.04.28 |
파이썬 데이터 읽기 (pandas) (0) | 2021.04.28 |
[Python] Flask Response Encoding 문제 (0) | 2021.04.28 |
[Python] Flask logging 하는 방법 (0) | 2021.04.28 |