You have a DataFrame called ecommerce with data on customer…
You have a DataFrame called ecommerce with data on customer orders: OrderID (integer) CustomerID (integer) OrderDate (string in format ‘dd/mm/yyyy’) OrderAmount (float) ShipDate (string in format ‘dd/mm/yyyy’) ShipMode (categories: Regular/Express/Priority) Product (text) Category (text) Quantity (integer) Discount (float) Profit (float) Perform the following data manipulation step: Filter the DataFrame to only include Priority ship mode.
Read Details