sierra.core.graphs.summary_line#
Linegraph for summarizing the results of a Batch Experiment.
Graphs one datapoint per Experiment.
Functions#
|
Generate a linegraph from a Batch Summary Data file. |
Module Contents#
- sierra.core.graphs.summary_line.generate(paths: sierra.core.graphs.pathset.PathSet, input_stem: str, output_stem: str, medium: str, title: str, xlabel: str, ylabel: str, backend: str, legend: list[str], xticks: list[float], xticklabels: list[str] | None = None, large_text: bool = False, logyscale: bool = False, stats: str | None = None) bool[source]#
Generate a linegraph from a Batch Summary Data file.
Possibly shows the 95% confidence interval or box and whisker plots, according to configuration.
- sierra.core.graphs.summary_line.paths#
Set of run-time tree paths for the batch experiment.
- sierra.core.graphs.summary_line.input_stem#
Stem of the Batch Summary Data file to generate a graph from.
- sierra.core.graphs.summary_line.output_fpath#
The absolute path to the output image file to save generated graph to.
- sierra.core.graphs.summary_line.title#
Graph title.
- sierra.core.graphs.summary_line.xlabel#
X-label for graph.
- sierra.core.graphs.summary_line.ylabel#
Y-label for graph.
- sierra.core.graphs.summary_line.backend#
The holoviews backend to use.
- sierra.core.graphs.summary_line.xticks#
The xticks for the graph.
- sierra.core.graphs.summary_line.xticklabels#
The xtick labels for the graph (can be different than the xticks; e.g., if the xticxs are 1-10 for categorical data, then then labels would be the categories).
- sierra.core.graphs.summary_line.large_text#
Should the labels, ticks, and titles be large, or regular size?
- sierra.core.graphs.summary_line.legend#
Legend for graph.
- sierra.core.graphs.summary_line.logyscale#
Should the Y axis be in the log2 domain ?
- sierra.core.graphs.summary_line.stats#
The type of statistics to include on the graph (from
--dist-stats).
- sierra.core.graphs.summary_line.model_root#
The absolute path to the
models/directory for the batch experiment.