22 lines
1.1 KiB
YAML
22 lines
1.1 KiB
YAML
# 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) |