Spaces:
Running
Running
Circhastic
commited on
Commit
•
329b9f4
1
Parent(s):
6bf4df5
Version 1 hotfix #25 for merge
Browse files
app.py
CHANGED
@@ -189,7 +189,7 @@ def merge_forecast_data(actual, predicted, future):
|
|
189 |
|
190 |
future = future.to_frame()
|
191 |
future = future.rename_axis('Date')
|
192 |
-
future.rename(columns={future.columns[0]: "Future
|
193 |
|
194 |
merged_dataframe = pd.concat([actual, predicted, future], axis=1)
|
195 |
merged_dataframe = merged_dataframe.reset_index()
|
|
|
189 |
|
190 |
future = future.to_frame()
|
191 |
future = future.rename_axis('Date')
|
192 |
+
future.rename(columns={future.columns[0]: "Forecasted Future Sales"}, inplace=True)
|
193 |
|
194 |
merged_dataframe = pd.concat([actual, predicted, future], axis=1)
|
195 |
merged_dataframe = merged_dataframe.reset_index()
|