2024/09

작성일자 : 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-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() 함수를 호출한다. 아래..
작성일자 : 2024-09-25Ver 0.1.1참고 사이트 : wiki docs matplotlib.pyplot 모듈의 xlabel(), ylabel() 함수를 사용하면 그래프의 x, y 축에 대한 레이블을 표시할 수 있다.이 페이지에서는 xlabel(), ylabel() 함수를 사용해서 그래프의 축에 레이블을 표시하는 방법에 대해 소개한다. 기본 사용예제import matplotlib.pyplot as pltplt.plot([1, 2, 3, 4], [1, 4, 9, 16])plt.xlabel('X-Label')plt.ylabel('Y-Label')plt.show() xlabel(), ylabel() 함수에 문자열을 입력하면, 아래 그림과 같이 각각의 축에 레이블이 표시된다.여백 지정하기예제import ..
작성일자 : 2024-09-24Ver 0.1.1참고 사이트 : wiki docs기본 사용 예제1import matplotlib.pyplot as pltplt.plot([2,3,5,10])plt.show() 이 세 줄의 코드는 간단한 그래프를 하나 띄운다.plot([2, 3, 5, 10])와 같이 하나의 리스트 형태로 값들을 입력하면 y 값으로 인식한다.plot((2, 3, 5, 10)) 또는 plot(np.array([2, 3, 5, 10])와 같이 파이썬 tuple 또는 Numpy Array의 형태로도 데이터를 입력할 수 있다. x 값은 기본적으로 [0, 1, 2, 3]이 되어서, 점 (0, 2), (1, 3), (2, 5), (3, 10)를 잇는 아래와 같은 꺾은선 그래프가 나타납니다.x, y 값 ..
Unlimited Jun
'2024/09 글 목록 (2 Page)