1 stats_to_markdown_table
pose_generation.stats_to_markdown_table(stats, *, header=None)Convert nested stats dict into a GitHub-flavoured Markdown table.
1.1 Parameters
| Name | Type | Description | Default |
|---|---|---|---|
| stats | dict[str, dict[str, float]] | Mapping like {"radius_m": {"min": .., "max": .., ...}}. |
required |
| header | str | None | Optional table title inserted as a preceding bold line. | None |
1.2 Returns
| Name | Type | Description |
|---|---|---|
| str | Markdown string containing a table with columns metric \| min \| max \| mean \| std. |