11 de julho de 2017

What

The Data

  • For this plot to work I need to turn this big table to a more long, less column format.
library(dplyr)
library(tidyr)
names(cb16) <- gsub("X","",names(cb16))
cb16N <- cb16 %>% gather(Round, Position, -Times)
cb16N$Round <- as.factor(as.numeric(cb16N$Round))

Now we can plot it!

  • For plot it I will force lines and reverse de Y axis, since position should be higher as close to 1 (first position).

Second thoughts

  • It's a lot of data. since there are 38 rounds and 20 teams.
  • I will keep just the 5 top teams at the last round to have a clear view.