matplotlib : 선그래프 색,marker, 배경색,linestyles
그래프 색 변경 plt.plot(x,y, color='pink') 약자로 그래프 설정 mfc = marker face color ms = marker size mec = marker edge color ls = line style plt.plot(x, y, 'ro--') 처럼 color, marker, linestyle을 동시에 지정할 수 있다. 그래프 배경색도 설정가능하다, 마음에 드는 색을 찾고싶으면 구글에 color picker를 치면 hexcode,rgb를 알수있다. https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.plot.html matplotlib.pyplot.plot — Matplotlib 3.5.2 documentation An o..
2022. 7. 10.