I'm running a pizza service and would like to predict a number of orders for every hour interval during a day per location (basically where we should deliver the pizza) in future.
And I've got a small data set of past orders: pairs of [timestamp, location], where location is a pair of latitude and longitude.
I did a small research and they say the simplest way to predict is to use a linear regression model with multiple variables (3 in my case: *timestamp, lat, lon).
So I've got NUMBER_OF_ORDERS(TIME, LATITUDE, LONGITUDE) function. Does it make sense to use a linear regression model for my task? I'm interested in the most simple yet accurate solution.