GDEPROJEKTCSOPI / ivkemence

0 stars 0 forks source link

pandas - temp change on one panel #16

Open HegedusAlexandra opened 2 weeks ago

HegedusAlexandra commented 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

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')