I have to develop a histogram for two variables in one chart. i am trying to use table() function to combine them but its not the chart i expect
Here is the code:
table <- table(Agency_Turnover_by_Reason_Code_FY18$Resignation,Agency_Turnover_by_Reason_Code_FY18$Retirement)
hist(table,
main = " Histogram of Resignation vs Retirement",
xlab = "Resignation",
border = "black",
col = "blue")