본문 바로가기
Python/Python Examples

[Python Example Codes] Matplotlib 이름 바꾸기(윈도우 이름 | 타이틀 이름 | X축 이름 | Y축 이름)

by Henry Cho 2021. 12. 7.
728x90

Matplotlib 이름 바꾸기(윈도우 이름 | 타이틀 이름 | X축 이름 | Y축 이름)


포스트 난이도: HOO_Middle

 

[Notice] 포스트 난이도에 대한 설명

안녕하세요, HOOAI의 Henry입니다. Bro들의 질문에 대한 내용을 우선적으로 포스팅이 되다 보니 각각의 포스트에 대한 난이도가 달라서 난이도에 대한 부분을 작성하면 좋겠다는 의견을 들었습니다

whoishoo.tistory.com


 

# Matplotlib 이름 바꾸기(윈도우 이름 | 타이틀 이름 | X축 이름 | Y축 이름)

 

import numpy as np
import matplotlib.pyplot as plt

#기존 Scatter example codes를 참고
np.random.seed(99)

N = 100
x = np.random.rand(N)
y = np.random.rand(N)
colors = np.random.rand(N)
area = (20 * np.random.rand(N)) ** 2

#윈도우 시스템 창 이름
fontFigure = plt.figure("HOOAI Python Example Codes")

#그래프 제목 타이틀
fontFigure.suptitle('HOOAI', fontsize=40)
fontSub = fontFigure.add_subplot(111)
fontFigure.subplots_adjust(top=0.80)
#그래프 소제목 타이틀
fontSub.set_title('Python Example Code', fontsize=20)
#x축과 y축
fontSub.set_xlabel('View Count', fontsize=20)
fontSub.set_ylabel('Total Likes', fontsize=20)

plt.scatter(x, y, s=area, c=colors, alpha=0.5)
plt.show()


https://whoishoo.tistory.com/201

 

[Python Example Codes] Matplotlib Scatter #01

MATPLOTLIB SCATTER #01 포스트 난이도: HOO_Middle [Notice] 포스트 난이도에 대한 설명 안녕하세요, HOOAI의 Henry입니다. Bro들의 질문에 대한 내용을 우선적으로 포스팅이 되다 보니 각각의 포스트에 대한..

whoishoo.tistory.com

 

728x90

댓글