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
'Programming Languages > Python' 카테고리의 다른 글
[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] 파이썬에서 멀티프로세싱이란?(What is Multiprocessing in Python?) (0) | 2021.08.04 |
[Python] 파이참에서 파이썬 패키지 쉽게 설치 하는 방법: import [패키지명] (0) | 2021.07.12 |
댓글