Back to Article
Data Dictionary
Download Notebook
In [1]:
# Data Dictionary

import pandas as pd

df_dictionary = pd.read_csv('../resources/Data_Dictionary.csv')
display(df_dictionary)
Feature Name Data Type Description PK (Yes/No)
0 order_id int64 Unique identifier for each order Yes
1 customer_id int64 Unique identifier for each customer No
2 order_date object The timestamp when the order was placed No
3 promised_delivery_time object The time informed to the customer for completi... No
4 actual_delivery_time object The actual time when the order was delivered No
5 delivery_status object The delivery status of the order No
6 order_total float64 The total price of the order (in Rupees) No
7 payment_method object The payment method used by the customer No
8 delivery_partner_id int64 Unique identifier representing the delivery pa... No
9 store_id int64 Unique identifier for the store that fulfilled... No