Flipped Assignment 5
There is 6275201 entries in this datafile
Observations<-readRDS("/Users/Breyna/Downloads/TTU/Fall 2023/IE 2324/FairTraders_Receipts_and_StorageBins.rds")
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
What percentage of orders were Purchase Orders?
15.3%
prop.table(table(Observations$SourceType))
##
## Purchase Order Supplier Order
## 0.1531902 0.8468098
What percentage of orders were received by the eCommerce business unit through a Purchase Order?
What percentage of orders were received by the Wholesale business unit through a Purchase Order?
What percentage of orders were stored as a Pallet?
What percentage of orders were received as a Purchase Order and stored in a Chicken Box?
What percentage of orders were received as a Purchase Order or stored in a Chicken Box?