显示交互式数据报告
(factors_data: Dict, results_dir: Path)
| 391 | |
| 392 | |
| 393 | def display_data_report_interactive(factors_data: Dict, results_dir: Path): |
| 394 | """显示交互式数据报告""" |
| 395 | |
| 396 | markdown_content, save_path = generate_data_report(factors_data, results_dir) |
| 397 | generator = DataReportGenerator(factors_data) |
| 398 | generator.display_interactive_report(markdown_content, save_path) |
| 399 | |
| 400 | return save_path |
| 401 | |
| 402 | |
| 403 | def generate_final_report(final_state: Dict, results_dir: Path) -> tuple[str, Path]: |
nothing calls this directly
no test coverage detected