영어 버전 문서로 돌아가기multiplotnode 특성
multiplotnode 특성
마지막 업데이트 날짜: 2024년 10월 07일
다중 도표 노드는 단일 필드에 여러 Y
필드를 X
표시하는 도표를 작성합니다. Y
필드는 색상이 지정된
선으로 도표됩니다. 각각은 스타일이 Line으로 설정되고 X 모드가
Sort로 설정된 구성 노드와 동등합니다. 다중 도표는
시간에 따라서 여러 변수의 변동을 탐색하기 원할 때
유용합니다.
예
stream = modeler.script.stream()
typenode = stream.findByID("id42KW3MSA94B")
node = stream.create("multiplot", "My node")
stream.link(typenode, node)
# "Plot" tab
node.setPropertyValue("x_field", "Age")
node.setPropertyValue("y_fields", ["Na", "K"])
node.setPropertyValue("panel_field", "Sex")
node.setPropertyValue("normalize", True)
node.setPropertyValue("use_overlay_expr", False)
node.setPropertyValue("overlay_expression", "test")
node.setPropertyValue("records_limit", 500)
node.setPropertyValue("if_over_limit", "PlotSample")
multiplotnode 특성 |
데이터 유형 | 특성 설명 |
---|---|---|
x_field |
필드 | |
y_fields |
목록 | |
panel_field |
필드 | |
animation_field |
필드 | |
normalize |
플래그 | |
use_overlay_expr |
플래그 | |
overlay_expression |
문자열 | |
records_limit |
Number | |
if_over_limit |
PlotBins PlotSample PlotAll |
|
x_label_auto |
플래그 | |
x_label |
문자열 | |
y_label_auto |
플래그 | |
y_label |
문자열 | |
use_grid |
플래그 | |
graph_background |
color | 표준 그래프 색상은 이 절의 시작부에서 설명됩니다. |
page_background |
color | 표준 그래프 색상은 이 절의 시작부에서 설명됩니다. |