I'm trying to build a model, data consists of specific date_time for every day (the action can happen multiple times every day) and I want to predict the next time the action will happen.
Sample data looks like this:
2021-12-17 21:28:26
2021-12-17 22:17:37
2021-12-17 22:27:21
2021-12-17 23:33:25
2021-12-17 23:57:27
.
.
.
2021-12-23 11:12:27
2021-12-23 12:01:11
2021-12-23 13:19:44
.
.
.
predict next action time???
I tried to model my data with prophet but I'm not sure that is the best option for me. I'll be happy if anyone can help and introduce me to libraries/packages. Or give me some keywords to search about that.
P.S. I'm not very familiar with this topic and started a few days ago to search about that.