資料の 英語版 に戻るmultiplotnode プロパティー
multiplotnode プロパティー
最終更新: 2024年10月04日
線グラフ・ノードでは、単一の X
フィールドに対して複数の Y
フィールドを表示するプロットを作成します。 Y
フィールドは色付きの線で作図され、それぞれ「スタイル」フィールドを「ライン」に、「X モード」フィールドを「ソート」に設定した散布図ノードに相当します。 線グラフは、複数の変数の変動を長期にわたって調査するときに役立ちます。
例
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 |
string | |
records_limit |
数値 | |
if_over_limit |
PlotBins PlotSample PlotAll |
|
x_label_auto |
フラグ | |
x_label |
string | |
y_label_auto |
フラグ | |
y_label |
string | |
use_grid |
フラグ | |
graph_background |
色 | 標準のグラフ色は、このセクションの最初に説明されています。 |
page_background |
色 | 標準のグラフ色は、このセクションの最初に説明されています。 |