1,163 views
1 1 vote
What kind of algorithm would best for following problem.
I try to forecast reservation of different kind of tables. Let's say I have 100 different tables, which are reserved for from 17.00-22.00 daily. Each table is either reserved (1) or available (0) on certain hour.  I'm interested in to forecast each table based on history data from 2 previous weeks. So for example result is that tomorrow 18.00-19.00 certain table is either 0 (available) or 1 (reserved).
0% Accept Rate Accepted 0 answers out of 1 questions

1 Answer

1 1 vote

Before suggesting the best method, you need to explore more on your data in EDA stage. Are these tables dependent to each other or not? Could it be modeled with time-series or not because your problem could be a time-series problem.

The problem you described is similar to hotel room demand forecasting to me and you can review the related papers. You can also find some source codes here for predicting a time-series similar to your problem here.

Related questions

1 1 vote
0 0 answers
380
380 views
2 2 votes
0 0 answers
1.0k
1.0k views
askdatascience asked Aug 26, 2018
1,026 views
I am wondering if anyone can suggest the best resources for studying Machine Learning?
2 2 votes
1 answers 1 answer
6.3k
6.3k views
universe asked Oct 6, 2018
6,347 views
Assume we have the following algorithm:How should I count the number of each operation?
2 2 votes
1 1 answer
908
908 views