Week 3 Assignment
Create a web page presentation using R Markdown that features a plot created with Plotly, and publish it on RPubs!
4/29/2017
Create a web page presentation using R Markdown that features a plot created with Plotly, and publish it on RPubs!
The purpose of the following plot is to give evidence at the path followed by the GDP growth rate by years (1996-2014) and by macro-regions.
plot_ly(gdp_data, x=~Years, y=~GDP, color = ~cr, type="scatter", mode="lines") %>%
layout(title="GDP Growth Rate in Italy (1996-2014)")