Module # 10 assignment
Review the reading resources and post on your blog a new entry with your work with ggplot2 and time series (try yourself) and discuss the input of visualization on time series analysis. The dataset I will be using is titled "Video Game Sales" ( https://www.kaggle.com/datasets/anandshaw2001/video-game-sales ) The first plot I created deals with the amount of video game sales over the years. Using ggplot, I was able to establish a relationship of the total amount of video games sold over the course of forty years. > ggplot(videoGameSales, aes(x = as.numeric(Year), y = Global_Sales)) + + geom_line(stat = "summary", fun = sum) + + labs(title = "Global Video Game Sales Over the Years", x = "Year", y = "Total Sales (millions)") The next plot was created with R-base graphics. This one was a little trickier without the use of ggplot. More steps had to be incorporated such as the use of the aggregate function. I divided the code into s...