diff --git a/backend/app/plan/router.py b/backend/app/plan/router.py index bd15525d..4b972a6a 100644 --- a/backend/app/plan/router.py +++ b/backend/app/plan/router.py @@ -333,6 +333,9 @@ async def trigger_plan(body: PlanTriggerRequest): recommendations[p.id] = property_recommendations # Finally, we'll prepare data for predicting the impact on SAP + # TODO: We should use the cleaned data from get_components in the data rather than the raw + # values. We should create a method in Property which takes the EPC data and inserts the cleaned + # data epc_data = p.data.copy() epc_data = pd.DataFrame([epc_data]) epc_data.columns = [col.upper().replace("-", "_") for col in epc_data.columns]