I am planning to plot a bar-plot/clustered column chart for time vs revenue with trend-line connecting each bars on top. Starting from year 1981 to 1988.
I have used this code to read the csv : read.csv(file_location/Revenue.csv",header = T, sep=",", dec = ".")
for the plotting : pl <- ggplot(data,aes(x=ï..Year))
and then : pl + geom_bar(color='red',fill='blue').
Unfortunately, i end up with something like this. Whereas, i'd prefer something like this. I used only ggplot2 library in this case, should i use tidyr, diplyr additionally ? Am i mistaking between continuous and discrete variables. Any advice regarding aesthetic modification to beautify it or solutions regarding this would be really appreciated as i am still in the basics of ggplot and data visualizations.
I have added the fine in case if you want to check it : Revenue.csv
