Fair Traders

Flipped Assignment 5

  1. How many entries are in the datafile? 

There is 6275201 entries in this datafile

Observations<-readRDS("/Users/Breyna/Downloads/TTU/Fall 2023/IE 2324/FairTraders_Receipts_and_StorageBins.rds")
  1. What percentage of product was received by each business unit? 

    15.3% ECOMMERCE

    82.3% FESTIVAL

    2.3% WHOLESALE

prop.table(table(Observations$CustGroup))
## 
##  ECOMMERCE   FESTIVAL  WHOLESALE 
## 0.15319015 0.82290687 0.02390298
  1. What percentage of orders were Purchase Orders?

    15.3%

prop.table(table(Observations$SourceType))
## 
## Purchase Order Supplier Order 
##      0.1531902      0.8468098
  1. What percentage of orders were received by the eCommerce business unit through a Purchase Order? 

  2. What percentage of orders were received by the Wholesale business unit through a Purchase Order? 

  3. What percentage of orders were stored as a Pallet?

  4. What percentage of orders were received as a Purchase Order and stored in a Chicken Box?  

  5. What percentage of orders were received as a Purchase Order or stored in a Chicken Box?