multiplotnode 특성

다중 플롯 노드 아이콘멀티플롯 노드는 단일 X 필드 위에 여러 Y 필드를 표시하는 플롯을 생성합니다. 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")
표 1. 멀티플롯노드 속성
multiplotnode 특성 데이터 유형 특성 설명
x_field 필드  
y_fields 목록  
panel_field 필드  
animation_field 필드  
normalize 플래그  
use_overlay_expr 플래그  
overlay_expression string  
records_limit Number  
if_over_limit PlotBins PlotSample PlotAll  
x_label_auto 플래그  
x_label string  
y_label_auto 플래그  
y_label string  
use_grid 플래그  
graph_background color 표준 그래프 색상은 이 절의 시작부에서 설명됩니다.
page_background color 표준 그래프 색상은 이 절의 시작부에서 설명됩니다.