[업무 자동화] 평균점수와 100점 맞은 횟수 포함한 퀴즈 및 테스트 그래프 (파이썬 코드, 학생 점수로 그래프 만드는 프로그램, To Create a Simple Graph with Students' Scores in Python)
import pandas as pdimport matplotlib.pyplot as pltimport matplotlib# 한글 폰트 설정 (Windows에서는 'Malgun Gothic', macOS에서는 'AppleGothic' 등을 사용할 수 있음)matplotlib.rcParams['font.family'] = 'Malgun Gothic' # Windows에서 사용할 수 있는 한글 폰트matplotlib.rcParams['axes.unicode_minus'] = False # 마이너스 기호가 깨지지 않도록 설정# 데이터 입력data = { "Name": ["학생이름"] * 8, "Unit": [1, 1, 1, 1, 2, 2, 2, 2], "Lesson": [1, 2, 3, 4,..
2025. 1. 19.
[업무 자동화] 학생들 Daily Quiz, Unit Test 점수로 그래프 만들기 (파이썬 코드, 학생 점수로 그래프 만드는 프로그램, To Create a Simple Graph with Students' Scores in Python)
import pandas as pdimport matplotlib.pyplot as pltimport matplotlib# 한글 폰트 설정 (Windows에서는 'Malgun Gothic', macOS에서는 'AppleGothic' 등을 사용할 수 있음)matplotlib.rcParams['font.family'] = 'Malgun Gothic' # Windows에서 사용할 수 있는 한글 폰트matplotlib.rcParams['axes.unicode_minus'] = False # 마이너스 기호가 깨지지 않도록 설정# 데이터 입력data = { "Name": ["학생이름"] * 8, "Unit": [1, 1, 1, 1, 2, 2, 2, 2], "Lesson": [1, 2, 3, 4,..
2025. 1. 19.