Notice
Recent Posts
Recent Comments
Link
목록Matplotlib (1)
아미(아름다운미소)
matplotlib에 사용할 수있는 이름이 지정된 색상 알아내기matplotlib 설치소스코드) #-*- coding: utf-8 -*- ''' Created on 2018. 10. 3. @author: Lee ''' import matplotlib.pyplot as plt from matplotlib import colors as mcolors colors = dict(mcolors.BASE_COLORS, **mcolors.CSS4_COLORS) # Sort colors by hue, saturation, value and name. by_hsv = sorted((tuple(mcolors.rgb_to_hsv(mcolors.to_rgba(color)[:3])), name) for name, color i..
랭귀지/python
2018. 10. 3. 15:01