Get Order Count By Month
Get order count by month¶ Create a function get_order_count_by_month which takes orders list and order_status as arguments and returns a dict which contain order_month and count. We only have to get count those orders which belong to the passed order_status. If order_status is not passed then we need to count all records. In [1]: %run 07_preparing_data_sets.ipynb …