import matplotlib.pyplot as pltimport numpy as npimport pandas as pdimport seaborn as sns # Windows용 한글 폰트 오류 해결from matplotlib import font_manager, rcfont_path = "C:/Windows/Fonts/malgun.ttf"font_name = font_manager.FontProperties(fname = font_path).get_name()rc("font", family = font_name) 꺾은 선 그래프연속적으로 변화하는 데이터를 살펴보고자 할 때 주로 사용시간에 따른 데이터의 연속적인 변화량을 관찰할 때예) 시간에 따른 기온의 변화수량을 점으로 표시하면서 선으로 이어 그리..