Time-series
Daniel Tafmizi Dr. Friedman November 4, 2024 Lis 4317 Module 10 Github: daniel.R/Work.R/LIS4370Rprog/YOYexchanges.R at main · DanielDataGit/daniel.R My first graph is a simple time series analysis with multiple variables. This is an extension of my last assignments plots, which showed market cap over time. This graph had the issue of not showing the changes in the smaller exchanges, as the nasdaq and nyse were about 5 times bigger than them. Market cap also does not offer much value. To fix this issue, I accumulated how the year over year percentages changed. This was fairly difficult to do. I had trouble finding resources on an efficient way to sum for each year. Eventually, I used dplyr mutate and cumsum to calculate the changes cumulatively. I used ggplot to graph it My second graph is a time series fo...