How to Predict/Forecast street's Traffic based on previous values?
I have a dataset which has the following 5 columns:
date, hour, day_of_week, street_id, counts
My dataset has information about the number of cars that each street (same city) has in a given hour of a certain date, and I want to predict the traffic count that a certain street has in a given hour of a certain date.
I think I could use certain variables depending on the day and hour that I want to predict, for example, if a want to predict the traffic count of a working Wednesday:
Results of others working days
Results of others Wednesdays
...
I want to use Spark MLlib to perform the prediction because I have experience with Spark and I have large datasets.
How you deal with this kind of problem?
Any ideas?
Topic prediction apache-spark
Category Data Science