Open HegedusAlexandra opened 2 weeks ago
You can filter the data for a specific hutopanel_id (cooling panel) and analyze how the temperature changed over time.
Suggested excluding the decreasing part since its probably a cooling period out of work
panel_1 = df[df['hutopanel_id'] == 1] panel_1.set_index('datumido')['temperature'].plot(title='Temperature Change Over Time for Cooling Panel 1')
You can filter the data for a specific hutopanel_id (cooling panel) and analyze how the temperature changed over time.
Suggested excluding the decreasing part since its probably a cooling period out of work
Temperature change over time for hutopanel_id = 1
panel_1 = df[df['hutopanel_id'] == 1] panel_1.set_index('datumido')['temperature'].plot(title='Temperature Change Over Time for Cooling Panel 1')