26 lines
715 B
Python
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. |