sdikici commited on
Commit
89a5b23
1 Parent(s): ffb705f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -1
README.md CHANGED
@@ -22,10 +22,14 @@ The forecasting model is built using the Prophet library in Python, which is dev
22
  - Usage
23
  The main script (main.py) contains the function predict_and_evaluate, which takes the following inputs:
24
 
25
- csv_file: Path to the CSV file containing the time series data.
 
26
  days_to_predict: Number of days to forecast into the future.
 
27
  freq: Frequency of the data (e.g., "2H" for 2 hourly).
 
28
  country_name: Country code for holiday consideration (e.g., "UK" or "DE").
 
29
  The function returns evaluation metrics and a plot of the forecasted values.
30
 
31
  - Example
 
22
  - Usage
23
  The main script (main.py) contains the function predict_and_evaluate, which takes the following inputs:
24
 
25
+ csv_file: Path to the CSV file containing the time series data. The csv must have 3 columns in order (datetime, electricty consumption, temperature)
26
+
27
  days_to_predict: Number of days to forecast into the future.
28
+
29
  freq: Frequency of the data (e.g., "2H" for 2 hourly).
30
+
31
  country_name: Country code for holiday consideration (e.g., "UK" or "DE").
32
+
33
  The function returns evaluation metrics and a plot of the forecasted values.
34
 
35
  - Example