
library(treemap)
data = read.csv("g7.csv", stringsAsFactors = FALSE)
treemap(data, index=c("Country"), vSize="Employment.Share",
fontsize.labels=8,aspRatio = 0.9)
Primarily visualizing data from census bureau of India and other cool stuff using R
library(treemap)
data = read.csv("g7.csv", stringsAsFactors = FALSE)
treemap(data, index=c("Country"), vSize="Employment.Share",
fontsize.labels=8,aspRatio = 0.9)
Leave a Reply