반응형
호기심을 위해 아래 코드에서이 작업을 수행하는 방법을 알고 싶습니다. 나는 답을 찾고 있었지만 쓸모가 없습니다.
import numpy as np
import matplotlib.pyplot as plt
data=np.random.exponential(scale=180, size=10000)
print ('el valor medio de la distribucion exponencial es: ')
print np.average(data)
plt.hist(data,bins=len(data)**0.5,normed=True, cumulative=True, facecolor='red', label='datos tamano paqutes acumulativa', alpha=0.5)
plt.legend()
plt.xlabel('algo')
plt.ylabel('algo')
plt.grid()
plt.show()
해결 방법
나는 보통 사용
mng = plt.get_current_fig_manager()
mng.frame.Maximize(True)
plt.show ()
를 호출하기 전에 최대화 된 창이 나타납니다. 이것은 'wx'백엔드에서만 작동합니다.
편집하다:
참조 페이지 https://stackoverflow.com/questions/12439588
반응형
'파이썬' 카테고리의 다른 글
파이썬 Matplotlib에서 플로팅 창을 열어 둡니다. (0) | 2021.02.05 |
---|---|
파이썬 What is a clean way to convert a string percent to a float? (0) | 2021.02.05 |
파이썬 <p> 사이의 BeautifulSoup getText, 후속 단락을 선택하지 않음 (0) | 2021.02.05 |
파이썬 거북이에서이 사각형을 어떻게 채울 수 있습니까?-Python (0) | 2021.02.05 |
파이썬 목록의 항목을 단일 문자열로 연결하는 방법은 무엇입니까? (0) | 2021.02.05 |
댓글