28 lines
638 B
Python

"""
药店销售预测系统 - 分析模块
"""
from .metrics import evaluate_model
from .trend_analysis import (
analyze_prediction_result,
analyze_trend,
calculate_prediction_statistics,
calculate_day_over_day_changes,
compare_with_historical
)
from .explanation import (
analyze_influencing_factors,
generate_prediction_explanation
)
__all__ = [
'evaluate_model',
'analyze_prediction_result',
'analyze_trend',
'calculate_prediction_statistics',
'calculate_day_over_day_changes',
'compare_with_historical',
'analyze_influencing_factors',
'generate_prediction_explanation'
]