Files
entrix_case_challange/forecasting_model/io/__init__.py
2025-05-02 14:36:19 +02:00

26 lines
715 B
Python

"""
Input/Output utilities for the forecasting model package.
Currently, primarily includes plotting functions used internally by evaluation.
"""
# Expose plotting utilities if intended for external use
# from .plotting import (
# setup_plot_style,
# save_plot,
# create_time_series_plot,
# create_scatter_plot,
# create_residuals_plot,
# create_residuals_distribution_plot
# )
# __all__ = [
# "setup_plot_style",
# "save_plot",
# "create_time_series_plot",
# "create_scatter_plot",
# "create_residuals_plot",
# "create_residuals_distribution_plot",
# ]
# If nothing is intended for public API from this submodule, leave this file empty
# or with just a docstring.