Area

작성일자 : 2024-10-01Ver 0.1.1참고 사이트 : wiki docs 그래프의 특정 영역을 색상으로 채워서 강조할 수 있다.이번 포스팅에서는 matplotlib.pyplot 모듈에서 그래프의 영역을 채우는 아래의 세가지 함수에 대해 소개한다.fill_between() - 두 수평 방향의 곡선 사이를 채우기fill_betweenx() - 두 수직 방향의 곡선 사이를 채우기fill() - 다각형 영역을 채우기Keyword: plt.fill_between(), plt.fill_betweenx(), plt.fill()기본 사용 - fill_between()예제import matplotlib.pyplot as pltx = [1, 2, 3, 4]y = [2, 3, 5, 10]plt.plot(x, y)pl..
작성일자 : 2024-09-17Ver 0.1.1 AreaArea는 단일 면적 모양으로 다중 데이터 요소를 나타낸다. 면적 표시는 종종 단일 면적 또는 stack 면적을 사용하여 시간 경과에 따른 변화를 표시하는 데 사용된다.속성속성유형설명alignanyOf(Align,ExprRef)The horizontal alignment of the text or ranged marks (area, bar, image, rect, rule). One of "left", "right", "center".Note: Expression reference is not supported for range marks.baselineanyOf(TextBaseline, ExprRef)For text marks, the verti..
Unlimited Jun
'Area' 태그의 글 목록