본문 바로가기
파이썬. 데이터분석/Matplotlib

matplotlib : 선그래프 색,marker, 배경색,linestyles

by 한국수달보호협회장 2022. 7. 10.

그래프 색 변경

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 object with labelled data. If given, provide the label names to plot in x and y. Note Technically there's a slight ambiguity in calls where the second label is a valid fmt. plot('n', 'o', data=obj) could be plt(x, y) or plt(y, fmt). In such cases, the f

matplotlib.org

 

 

 

linestyles

 

'-'   solid

'--'  dashed

'-.'  dashdot

':' '  dotted