# Line plotimport matplotlib.pyplot as pltx = [1, 2, 3, 4, 5]y = [10, 20, 25, 30, 40]plt.plot(x, y, marker='o', linestyle='-', color='b', label="데이터")plt.xlabel("X 축")plt.ylabel("Y 축")plt.title("기본 선 그래프")plt.legend()plt.grid(True)plt.show()# Histogramimport numpy as npimport matplotlib.pyplot as pltdata = np.random.randn(100) # 정규 분포를 따르는 1000개의 난수 생성plt.hist(data, bins=30, color='skyblue', ed..