could you, please, help me: I don't know how to add hourly seasonality in Facebook Prophet in Python. I tried the following:
m = Prophet(
weekly_seasonality = True,
yearly_seasonality = True,
daily_seasonality = True
)
m.fit(train_df)
future = m.make_future_dataframe(periods=24, freq = 'H')
forecast = m.predict(future)
But it didn't help me. The results were strange. Maybe you know the solution how to add both daily, weekly etc and hourly seasonality?