plot의 표시를 크게 한다.

5170 단어 파이썬matplotlib
자신의 메모

plot 조금 표시되는 것이 작기 때문에
fig = plt.figure(dpi=150)

라고 적는다.
그러면 크게 표시된다.


이런 느낌의 디폴트 사이즈가

이런 느낌으로 커진다

그리고 마지막으로

relaxed
plt.savefig('bifferSize.png')
plt.show()

라고 쓰면 로컬 파일에 저장할 수 있다.

여기에서
plt.show()
plt.savefig('bifferSize.png')

라는 느낌에 먼저 plt.show() 하고 버리면 저장된 이미지가 새하얗게 된다.
plt.savefig가 작동하지 않으면이 순서가 잘못되었을 수 있습니다.

7 7.5 7.4
이번 코드
import matplotlib
import matplotlib.pyplot as plt
fig = plt.figure(dpi=150)
plt.plot(x,ys,marker='.', color="blue", label = 'client')
plt.plot(x,yc,marker='.', color="red", label = 'server')
plt.xscale('log')
plt.ylabel('delay time [s]')
plt.xlabel('buffer size')
plt.legend()
plt.title('Relationship between buffer size and delay time')
plt.savefig('bufferSize.png')
plt.show()

좋은 웹페이지 즐겨찾기