my data :
Country Year FY_sales Truck_type GDP Inflation_Rate Unemployment_Rate
1 France 2007-05-25 2064543 LCV 2663112510266 1.488073528 7.659999847
2 France 2007-05-25 460552 MCV/CV 2663112510266 1.488073528 7.659999847
3 France 2007-05-25 58940 HCV 2663112510266 1.488073528 7.659999847
I want to plot like this:
I have plotted for gdp:
ggplot(data,aes(Year,gdp))+geom_line()+geom_point()
but I need gdp, inflation, unemployment in same plot.