Matplotlib에서 축을 백분율 (%)로 표시
3659 단어 파이썬matplotlib
샘플 데이터
import numpy as np
arr = np.random.randn(10)
print(arr)
# => array([ 0.24671671, -0.8013258 , -0.29147271, -0.10755521, -1.39065478,
# -1.03983494, -0.75304377, 0.62645801, 0.76417769, -0.31104797])
정상적으로 플롯하면
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
ax.bar(x=range(len(arr)), height=arr)
ax.set_title('何らかの割合')
이것이라면 비율임을 알기 어렵다.
백분율 표시할 경우
import matplotlib
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
ax.bar(x=range(len(arr)), height=arr)
ax.yaxis.set_major_formatter(matplotlib.ticker.PercentFormatter(1.0))
ax.set_title('何らかの割合')
matplotlib.ticker — Matplotlib documentation
Reference
이 문제에 관하여(Matplotlib에서 축을 백분율 (%)로 표시), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/hoto17296/items/38392caee2e956442272텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)