MCPcopy Create free account
hub / github.com/FinStep-AI/ContestTrade / display_data_report_interactive

Function display_data_report_interactive

cli/static/report_template.py:393–400  ·  view source on GitHub ↗

显示交互式数据报告

(factors_data: Dict, results_dir: Path)

Source from the content-addressed store, hash-verified

391
392
393def 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
403def generate_final_report(final_state: Dict, results_dir: Path) -> tuple[str, Path]:

Callers

nothing calls this directly

Calls 3

generate_data_reportFunction · 0.85
DataReportGeneratorClass · 0.85

Tested by

no test coverage detected