[디지털 문해력]Python으로 시작하는 데이터 분_Matplotlib 데이터 시각화(211002)
matplotlib 그래프들 ○ Line Plot fig, ax = plt.subplots() x = np.arange(15) y = x**2 ax.plot(x,y, linestype = ":", marker = "*", color = "r") linestype : "-", "--", line style x = np.arange(10) fig, ax = plt.subplots() ax.plot(x, x, linestyle="-" # solid ax.plot(x, x+2, linestyle="--" # dashed ax.plot(x, x+4, linestyle="-." # dashdot ax.plot(x, x+6, linestyle=":" #dotted color x = np.arange(10) fig, ..
2021. 10. 2.