Alejandro Cadavid Romero
29/10/2017
It is known, that the consumption per capita in any country is an indicatior of wealth and development of the country itself. For this, it's important to know how the consumption of this material has evolved over the years in Colombia, and also how the industry is answering this demand by the increasing of the production.
In the order of this ideas, the app objective is to give an overview of the production and demand of grey cement in Colombia and how it has evolved over the last years. More information of the statistics used is here.
To get an idea of what will you find in the app, here is embeded the plot of the demand
g <- ggplot(cement_demand)+
geom_line(aes(x = Date, y = Production, colour = "Production"))+
geom_line(aes(x = Date, y = National.dispatch, colour = "Demand"))+
scale_color_manual(name = "Notation",values = c(Production="firebrick2",
Demand="dodgerblue"))+
ggtitle("Cement Production and Demand in Colombia")+
labs(x = "Date",y = "Tons")+
theme(plot.title = element_text(hjust = 0.5, size = 15),
axis.text.x = element_text(size = 15),
axis.text.y = element_text(angle = 30,size = 15))
This app contain 3 main tabs:
The link to the app is this
Further information of the code used go to the github page