본문 바로가기
파이썬

파이썬 matplotlib에서 로그 스케일로 값을 시각화하는 방법은 무엇입니까?

by º기록 2020. 9. 15.
반응형

0.000001과 같이 아주 작은 차이를 가진 베일이 있습니다. 로그 스케일로 시각화하고 싶습니다. matplotlib에서 수행하는 방법이 궁금합니다.

고마워

 

해결 방법

 


키워드 인수 log = True 를 추가하기 만하면됩니다.

또는 예 :

from matplotlib import pyplot
import math
pyplot.plot([x for x in range(100)],[math.exp(y) for y in range(100)] )
pyplot.xlabel('arbitrary')
pyplot.ylabel('arbitrary')
pyplot.title('arbitrary')

#pyplot.xscale('log')
pyplot.yscale('log')

pyplot.show()


 

참조 페이지 https://stackoverflow.com/questions/9979378

 

 

반응형

댓글