I have the following data and would like to create a chart as shown below:
I would like to create a chart in R as shown in the attachment
I need help with the R code to have both expected and processed time in y axis,
c1_data <- actuals %>% select(workflow_code, expected_time, processed_time)
c1_graph <- ggplot(data=c1_data, aes(y=c1_data$expected_time, x=c1_data$workflow_code, fill=c1_data$processed_time)) +
geom_bar( position="dodge",stat="identity") +
labs(x="ABC",y="XQA",title="CCC") +
c1_graph