How many entries are in the datafile?

df<-readRDS("C:/Users/jamir/Downloads/FairTraders_Receipts_and_StorageBins.rds")
num_entries <- nrow(df)
print(num_entries)
## [1] 6275201

In this questions we used a readRDS command to call our file and find the amount of entires in the data file and got 6,275,201

  1. What percentage of product was received by each business unit? 

Note that the echo = FALSE parameter was added to the code chunk to prevent printing of the R code that generated the plot.