This is the data for a bar graph that shows the numbers of cases and deaths of MERS in Saudi Arabia, Korea, United Arab Emirates, Jordan, and Qatar.
D<-read.csv("data.csv")
matrix<-matrix(c(1030,182,77,19,13,453,32,10,6,5),ncol=5,byrow=TRUE)
This is the data for the bar graph.

This is the data for lethality for Saudi Arabia, Korea, United Arab Emirates, Jordan, and Qatar. I got the numbers (nearest whole number) by using this equation (lethality = (deaths/cases)*100).
D<-read.csv("data.csv")
rate<-matrix(c(44,18,13,32,38),ncol=5,byrow=TRUE)
This is the data for the bar graph.
