edsteva.viz.plots.probe.fitted_probe
fitted_probe_line
fitted_probe_line(
predictor: pd.DataFrame,
indexes: List[Dict[str, str]],
legend_predictor: str,
legend_model: str,
x_axis_title: str,
y_axis_title: str,
main_chart_config: Dict[str, float],
model_line_config: Dict[str, str],
probe_line_config: Dict[str, str],
)
Script to be used by plot_probe()
PARAMETER | DESCRIPTION |
---|---|
predictor |
\(c(t)\) computed in the Probe with its prediction \(\hat{c}(t)\)
TYPE:
|
indexes |
Variable from which data is grouped
TYPE:
|
legend_predictor |
Label name for the predictor legend.
TYPE:
|
legend_model |
Label name for the model legend.
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:
|
model_line_config |
If not None, configuration used to construct the model line.
TYPE:
|
probe_line_config |
If not None, configuration used to construct the probe line.
TYPE:
|
Source code in edsteva/viz/plots/probe/fitted_probe.py
14 15 16 17 18 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 |
|