Food Delivery Time Prediction
Not yet available
Overview
Predicting the delivery time of your order is a challenging task for every food delivery service like Zomato and Swiggy.
One of the best strategies to predict the delivery time is by calculating the distance between the point of picking up the order and the point of delivering the order. And then predicting the delivery time based on how much time your delivery partners took to deliver orders in the past for the same distance.
The dataset you are given here is a cleaned version of the original dataset submitted by Gaurav Malik on Kaggle. Below are all the features in the dataset:
ID
: order ID numberDelivery_person_ID
: ID number of the delivery partnerDelivery_person_Age
: Age of the delivery partnerDelivery_person_Ratings
: ratings of the delivery partner based on past deliveriesRestaurant_latitude
: The latitude of the restaurantRestaurant_longitude
: The longitude of the restaurantDelivery_location_latitude
: The latitude of the delivery locationDelivery_location_longitude
: The longitude of the delivery locationType_of_order
: The type of meal ordered by the customerType_of_vehicle
: The type of vehicle delivery partner ridesTime_taken
(min): The time taken by the delivery partner to complete the order
Objectives
You are required to predict the delivery time based on the distance covered by the delivery partner to deliver the order.