작성일자 : 2024-09-25수정일자 : 2024-09-29Ver 0.1.21. 데이터 준비Terra Mystica Snellman Statistics Terra Mystica Snellman StatisticsGame logs and statistics from online games of Terra Mysticawww.kaggle.com2. EDA - 데이터 파악# 모듈 importimport osimport pandas as pdimport numpy as npimport seaborn as snsimport matplotlib.pyplot as pltfrom matplotlib.gridspec import GridSpec# Directory 확인os.getcwd()'/Users/limjongju..
2024/09/26
작성일자 : 2024-09-26Ver 0.1.1참고 사이트 : wiki docs 범례 (Legend)는 그래프에 데이터의 종류를 표시하기 위한 텍스트이다.matplotlib.pyplot 모듈의 legend() 함수를 사용해서 그래프에 범례를 표시할 수 있다. 기본 사용예제import matplotlib.pyplot as pltplt.plot([1, 2, 3, 4], [2, 3, 5, 10], label='Price ($)')plt.xlabel('X-Axis')plt.ylabel('Y-Axis')plt.legend()plt.show() 그래프 영역에 범례를 나타내기 위해서는 우선 plot() 함수에 label 문자열을 지정하고, matplotlib.pyplot 모듈의 legend() 함수를 호출한다. 아래..