Translation not up to date
The translation of this page does not represent the latest version. For the latest updates, see the English version of the documentation.
Last updated: 04 lip 2023
Węzeł Histogram pokazuje wystąpienia wartości zmiennych numerycznych. Często jest używany do eksploracji danych przed manipulacjami i budowaniem modelu. Podobnie jak w przypadku węzła rozkładu, węzeł histogramu często ujawnia dysproporcje danych.
Przykład
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)
Właściwości węzła histogramnode |
Typ danych | Opis właściwości |
---|---|---|
field |
field (pole) | |
color_field |
field (pole) | |
panel_field |
field (pole) | |
animation_field |
field (pole) | |
range_mode |
Automatic UserDefined |
|
range_min |
Liczba | |
range_max |
Liczba | |
bins |
ByNumber ByWidth |
|
num_bins |
Liczba | |
bin_width |
Liczba | |
normalize |
Flaga | |
separate_bands |
Flaga | |
x_label_auto |
Flaga | |
x_label |
łańcuch | |
y_label_auto |
Flaga | |
y_label |
łańcuch | |
use_grid |
Flaga | |
graph_background |
kolor | Standardowe kolory wykresu są opisane na początku tej sekcji. |
page_background |
kolor | Standardowe kolory wykresu są opisane na początku tej sekcji. |
normal_curve |
Flaga | Wskazuje, czy w wynikach powinna być uwidoczniona krzywa rozkładu normalnego. |