---------------------------------------------------------------------- This is the API documentation for the gdtest_config_combo_f library. ---------------------------------------------------------------------- ## Functions Public functions analyze(dataset: list) -> dict Analyze a dataset and return summary statistics. Parameters ---------- dataset : list The data to analyze. Returns ------- dict Summary statistics including count, mean, and range. report(results: dict) -> str Generate a text report from analysis results. Parameters ---------- results : dict The results from `analyze`. Returns ------- str Formatted report string. export(data: dict, fmt: str = 'json') -> str Export data in the specified format. Parameters ---------- data : dict The data to export. fmt : str Output format, one of 'json', 'csv', 'yaml'. Returns ------- str The serialized data string.