edsteva.viz.dashboards.probe.probe
probe_only_dashboard
probe_only_dashboard(
predictor: pd.DataFrame,
x_axis_title: str,
y_axis_title: str,
main_chart_config: Dict[str, float],
vertical_bar_charts_config: Dict[str, str],
horizontal_bar_charts_config: Dict[str, str],
time_line_config: Dict[str, str],
chart_style: Dict[str, float],
)
Script to be used by predictor_dashboard()
PARAMETER | DESCRIPTION |
---|---|
predictor |
\(c(t)\) computed in the Probe.
TYPE:
|
x_axis_title |
Label name for the x axis.
TYPE:
|
y_axis_title |
Label name for the y axis.
TYPE:
|
main_chart_config |
If not None, configuration used to construct the top main chart.
TYPE:
|
vertical_bar_charts_config |
If not None, configuration used to construct the vertical bar charts.
TYPE:
|
horizontal_bar_charts_config |
If not None, configuration used to construct the horizontal bar charts.
TYPE:
|
time_line_config |
If not None, configuration used to construct the time line.
TYPE:
|
chart_style |
If not None, configuration used to configure the chart style.
EXAMPLE:
TYPE:
|
Source code in edsteva/viz/dashboards/probe/probe.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
|