Plot graphs using R programming for the following: (Datasets are attached/provided) ****************Things to do in Delivery Analysis · Over time – variation of time to delivery by month – 2018 (for...

1 answer below »
Plot graphs using R programming for the following questions using the attached dataset. Since the dataset is large I have shared the zip file. You can download the data set from this link :https://www.kaggle.com/olistbr/brazilian-ecommerce



Please provide all graphs in a word document and also provide the R code.


Plot graphs using R programming for the following: (Datasets are attached/provided) ****************Things to do in Delivery Analysis  · Over time – variation of time to delivery by month – 2018 (for Sept.17 - Aug. 18) · Impact of freight value, weight on delivery time?  · Average transaction value for each state    Payment Type Analysis ********************************  · Different payment type based on the transaction value ?  · What % of orders is discounted?   · Distribution of order value where discount is applied?  · Popularity by payment type based on each category
Answered Same DayOct 05, 2021

Answer To: Plot graphs using R programming for the following: (Datasets are attached/provided)...

Vignesh answered on Oct 05 2021
146 Votes
Assignment/plot1.png
Assignment/plot2.png
Assignment/plot3.1.png
Assignment/plot3.2.png
Assignment/plot4.1.png
Assignment/plot4.2.png
As
signment/plot5.1.png
Assignment/plot5.2.png
Assignment/plotting.R
##importing dataset
data=read.csv('C:/Users/vikki/Desktop/Order_Customer.csv')
data1=read.csv('C:/Users/vikki/Desktop/order_items_products.csv')
attach(data)
attach(data1)
##order_items_products data
#-----------------------Things to do in Delivery Analysis-------------------
#plot1
#Over time - variation of time to delivery by month - 2018 (for Sept.17 - Aug. 18)
estimatedate=as.Date(data$order_estimated_delivery_date)
custmerdate=as.Date(data$order_delivered_customer_date)
data_variation=data.frame(estimatedate,custmerdate)
data_variation$differencedate=(data_variation$estimatedate- data_variation$custmerdate)
data_variation$custmerdate <- as.POSIXlt(data_variation$custmerdate)
bymonth <- aggregate(data_variation$differencedate~month(data_variation$custmerdate),
data=data_variation,FUN=sum)
bymonth
bymonth$`data_variation$differencedate`= as.numeric(bymonth$`data_variation$differencedate`)
plot(bymonth$`month(data_variation$custmerdate)`,bymonth$`data_variation$differencedate`)
#Impact of freight value, weight on delivery time?
#plot2
#we have order_delivered_customer_date and order_estimated_delivery_date
#differece between above two delivery...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here