Fix daily resample

This commit is contained in:
Alexandre
2025-03-05 11:29:50 +01:00
committed by Nachtzuster
parent 93a2157262
commit c5f39f6670
+3 -3
View File
@@ -382,15 +382,15 @@ if daily is False:
fig = make_subplots(rows=1, cols=1)
df4 = df2['Com_Name'][df2['Com_Name'] == specie].resample('15min').count()
df4.index = pd.MultiIndex.from_arrays([df4.index.date, df4.index.time], names=['date', 'time'])
day_hour_freq = df4.unstack(level='time').fillna(0)
df4.index = [df4.index.date, df4.index.time]
day_hour_freq = df4.unstack().fillna(0)
saved_time_labels = [hms_to_str(h) for h in day_hour_freq.columns.tolist()]
fig_dec_y = [hms_to_dec(h) for h in day_hour_freq.columns.tolist()]
fig_x = [d.strftime('%d-%m-%Y') for d in day_hour_freq.index.tolist()]
fig_y = [h.strftime('%H:%M') for h in day_hour_freq.columns.tolist()]
day_hour_freq.columns = fig_dec_y
fig_z = day_hour_freq.values.transpose()
fig_z = day_hour_freq.values.transpose().tolist()
color_pals = px.colors.named_colorscales()
selected_pal = st.sidebar.selectbox('Select Color Pallet for Daily Detections', color_pals)