Skip to content

Inspect

inspect

Inspect populations from packaged presets or graph config files.

Classes

ParameterSummary dataclass

ParameterSummary(parameter: str, mean: float, std: float, p5: float, p95: float, minimum: float, maximum: float)

Summary statistics for one sampled parameter.

Functions

render_summary_table

render_summary_table(summaries: list[ParameterSummary]) -> str

Render a parameter-summary table for stdout output.

inspect_command

inspect_command(config: Annotated[str, Option('--config', help='Preset name or YAML/TOML config-file path.')], n: Annotated[int, Option('--n', min=1, help='Number of events to sample.')] = 1000, seed: Annotated[int | None, Option('--seed', help='Optional random seed.')] = None) -> None

Draw a quick sample and print per-parameter summary statistics.