반응형
quotes = [(1, 5, 6, 7, 4), (2, 6, 9, 9, 6), (3, 9, 8, 10, 8), (4, 8, 8, 9, 8), (5, 8, 11, 13, 7)]
아무도 여기서 나를 조금 도울 수 있습니까? 모든 팁을 환영합니다!
해결 방법
ax = plt.gca()
예:
import matplotlib.pyplot as plt
import matplotlib.finance
quotes = [(1, 5, 6, 7, 4), (2, 6, 9, 9, 6), (3, 9, 8, 10, 8), (4, 8, 8, 9, 8), (5, 8, 11, 13, 7)]
ax = plt.gca()
h = matplotlib.finance.candlestick(ax, quotes)
plt.show()
참조 페이지 https://stackoverflow.com/questions/15067668
반응형
'파이썬' 카테고리의 다른 글
파이썬 Python + Selenium WebDriver를 사용하여 쿠키를 저장하고로드하는 방법 (0) | 2021.01.25 |
---|---|
파이썬 Python: is thread still running (0) | 2021.01.25 |
파이썬 내일 날짜를 얻는 가장 깨끗하고 파이썬적인 방법? (0) | 2021.01.25 |
파이썬 os.path.exists와 os.path.isdir의 장단점 (0) | 2021.01.25 |
파이썬 python dictionary passed as an input to a function acts like a global in that function rather than a local (0) | 2021.01.25 |
댓글