PyQt5 라벨 사용 예제( QLabel, QFont, StyleSheet ) 입니다.2024. 9. 2 최초작성 import sysfrom PyQt5.QtWidgets import QApplication, QWidget, QVBoxLayout, QLabelfrom PyQt5.QtGui import QFontfrom PyQt5.QtCore import Qtclass StyleExample(QWidget): def __init__(self): super().__init__() self.initUI() def initUI(self): layout = QVBoxLayout() # 기본 라벨 label1 = QLabel('기본 라벨') ..
Matplotlib를 사용하여 그린 그래프에 라벨을 추가하는 방법입니다. 출처는 아래 링크입니다. https://queirozf.com/entries/add-labels-and-text-to-matplotlib-plots-annotation-examples#add-labels-to-points-in-scatter-plots 2022. 6. 19 최초작성 직선 그래프에 라벨 추가 직선 그래프에 파란색 원형 마커를 추가하고 y값을 라벨로 추가합니다. import matplotlib.pyplot as plt import numpy as np # 10개의 x좌표와 y좌표를 생성합니다. xs = np.arange(0,10,1) ys = np.random.normal(loc=3, scale=0.4, size=len..