matplotlib.pyplot.ylim #
- matplotlib.pyplot. ylim ( * args , ** kwargs ) [출처] #
현재 축의 y 제한을 가져오거나 설정합니다.
호출 서명:
bottom, top = ylim() # return the current ylim ylim((bottom, top)) # set the ylim to bottom, top ylim(bottom, top) # set the ylim to bottom, top
args를 지정하지 않으면 bottom 또는 top 을 kwargs로 전달할 수 있습니다. 즉, 다음과 같습니다.
ylim(top=3) # adjust the top leaving bottom unchanged ylim(bottom=1) # adjust the bottom leaving top unchanged
한계를 설정하면 y축에 대한 자동 크기 조정이 꺼집니다.
- 반환 :
- 하단, 상단
새 y축 제한의 튜플입니다.
메모
인수 없이 이 함수를 호출하는 것(예: )은 현재 축에서
ylim()
호출하는 것과 동일한 pyplot 입니다.get_ylim
인수를 사용하여 이 함수를 호출set_ylim
하는 것은 현재 축에서 호출하는 것과 동일한 pyplot입니다. 그래도 모든 인수가 전달됩니다.