728x90
Matplotlib 이름 바꾸기(윈도우 이름 | 타이틀 이름 | X축 이름 | Y축 이름)
포스트 난이도: HOO_Middle
# 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
728x90
'Python > Python Examples' 카테고리의 다른 글
[Python Example Codes] Matplotlib pyplot: plt.subplots() | x값만 활용한 그래프 생성 (0) | 2021.12.14 |
---|---|
[Python Example Codes] Pyplot: Single Axes 구현, 단일 그래프 (0) | 2021.12.12 |
[Python Example Codes] Matplotlib Scatter #01 (0) | 2021.12.07 |
[Python Examples] While Loops(While문) - #01 (0) | 2021.05.31 |
[Python Examples] Random 함수로 실수 구하기: #random.random(), #random.uniform() (0) | 2021.02.02 |
댓글