시각화

작성일자 : 2024-09-20Ver 0.1.1참고 사이트 : wiki docs그리기# 라이브러리 불러오기import matplotlib.pyplot as plt(데이터, 여러 옵션 및 서식) ...# 그래프 그리기plt.show()# ---------------------------------------------------# 데이터plt.plot(y) #x를 입력하지 않으면 자동으로 [1,2,3, ...]으로 입력됨plt.plot(x, y)plt.plot(x, y, '')plt.plot(x1, y1, '', x2, y2, '', x3, y3, '')data_dict = {'data_x' :[], 'data_y' : []}plt.plot('data_x', 'data_y', data = data_dict..
작성일자 : 2024-09-20Ver 0.1.1 Box PlotBox Plot은 요약 통계 세트를 사용하여 정량적 값의 분포를 요약한다. Box Plot의 중앙값 눈금은 중앙값을 나타내며, 아래쪽과 위쪽은 각각 1분위와 3분위를 나타낸다. 상자 그림의 유형에 따라 수염의 끝은 여러 가지를 나타낼 수 있다.Box Plot을 만들려면 mark_boxplot 메서드을 사용합니다.속성아래에 나열된 속성 외에도 상자, 중앙값, 규칙, 특이치 및 눈금을 사용하여 상자 그림의 여러 부분에 대한 기본 표시 속성을 지정할 수도 있다.속성유형설명extendanyOf(string, number)The extent of the whiskers. Available options include:"min-max": min a..
작성일자 : 2024-09-19Ver 0.1.1 BarBar(막대)는 막대 차트, 스택 막대 차트, 시계열과 같은 많은 시각화에서 유용하다. 속성속성유형설명widthanyOf(number, ExprRef, RelativeBandSize)Width of the marks. One of:- A number representing a fixed pixel width. - A relative band size definition. For example, {band: 0.5} represents half of the band.heightanyOf(number, ExprRef, RelativeBandSize)Height of the marks. One of:- A number representing a fixed..
작성일자 : 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
'시각화' 태그의 글 목록