This commit is contained in:
2025-05-02 10:45:06 +02:00
commit 7c9d809a82
29 changed files with 2931 additions and 0 deletions

22
forecasting_config.yaml Normal file
View File

@ -0,0 +1,22 @@
# Configuration for the forecasting model EDA
# This file defines the settings for data loading, analysis, and visualization
# -- General Settings --
log_level: INFO # Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
debug: true
# -- IO Settings --
data_file: data/Day-ahead_Prices_60min.csv # Path to the input data CSV relative to project root
output_dir: output/reports # Directory to save generated plots and report artifacts
latex_template_file: null # Path to the LaTeX template file relative to project root
# -- Zoom Settings (Plotting and Analysis) --
# Optional: Specify a date range for zoomed-in plots (YYYY-MM-DD format)
# Example: zoom_start_date: "2023-01-01"
# Example: zoom_end_date: "2023-12-31"
zoom_start_date: null # Default to null
zoom_end_date: null # Default to null
# -- Data Settings --
expected_data_frequency: "h" # Expected frequency of the time series data (h=hourly, D=daily, M=monthly, Y=yearly)