資料の 英語版 に戻るhistogramnode プロパティー
histogramnode プロパティー
最終更新: 2024年10月04日
ヒストグラム・ノードでは、数値フィールドの値の出現頻度が示されます。 多くの場合、操作やモデル作成の前にデータを探索するために使用されます。 棒グラフ・ノードと同様、ヒストグラム・ノードにより、データ内の不均衡がしばしば明らかになります。
例
stream = modeler.script.stream()
typenode = stream.findByID("id42KW3MSA94B")
node = stream.create("histogram", "My node")
stream.link(typenode, node)
# "Plot" tab
node.setPropertyValue("field", "Drug")
node.setPropertyValue("color_field", "Drug")
node.setPropertyValue("panel_field", "Sex")
# "Options" tab
node.setPropertyValue("range_mode", "UserDefined")
node.setPropertyValue("range_min", 1.0)
node.setPropertyValue("range_max", 100.0)
node.setPropertyValue("num_bins", 10)
node.setPropertyValue("normalize", True)
node.setPropertyValue("separate_bands", False)
histogramnode プロパティー |
データ・タイプ | プロパティーの説明 |
---|---|---|
field |
フィールド | |
color_field |
フィールド | |
panel_field |
フィールド | |
animation_field |
フィールド | |
range_mode |
Automatic UserDefined |
|
range_min |
数値 | |
range_max |
数値 | |
bins |
ByNumber ByWidth |
|
num_bins |
数値 | |
bin_width |
数値 | |
normalize |
フラグ | |
separate_bands |
フラグ | |
x_label_auto |
フラグ | |
x_label |
string | |
y_label_auto |
フラグ | |
y_label |
string | |
use_grid |
フラグ | |
graph_background |
色 | 標準のグラフ色は、このセクションの最初に説明されています。 |
page_background |
色 | 標準のグラフ色は、このセクションの最初に説明されています。 |
normal_curve |
フラグ | 正規分布のカーブを出力に表示するかどうかを指定します。 |