Gross Domestic Product (per capita)
This dataset corresponds to the per capita gross domestic product (current US$) of 190 countries during 2010.
data(gdp)
A data frame with 190 observations on the following 2 variables.
Country
Country.
gdp2010
The per capita gross domestic product (current US$).
World Bank's DataBank website (http://databank.worldbank.org/data/).
data("gdp", package="ssym") par(mfrow=c(1,2)) hist(gdp$gdp2010, xlim=range(gdp$gdp2010), ylim=c(0,0.00015), prob=TRUE, breaks=55, col="light gray",border="dark gray", xlab="GDP per capita 2010", main="Histogram") plot(ecdf(gdp$gdp2010), xlim=range(gdp$gdp2010), ylim=c(0,1), verticals=TRUE, do.points=FALSE, col="dark gray", xlab="GDP per capita 2010", main="Empirical Cumulative Distribution Function")
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.