Apr 4, 2024, 8:26 AM
Ship Mode and Segment. Now, let's dive deeper into the data by analyzing sales and profit distributions, and exploring relationships between different variables.Sample - Superstore.xlsx - Orders.csv, containing 10,194 entries and 21 columns.Order Date to a datetime format. Then, we'll aggregate sales and profits by month to observe how they vary over the period covered by the dataset. This approach will help us identify any seasonal trends or significant changes in performance.Order Date to datetime format and aggregated sales and profits by month.mlxtend package for market basket analysis.min_support threshold set for finding frequent itemsets was too high, resulting in no itemsets meeting this criteria.min_support threshold to identify more frequent itemsets and subsequently generate association rules from these. Let's adjust the min_support value and attempt to find frequent itemsets again.