1. #hacky way of doing ppr; know this is still not really acceptable
  2. final$player_ppr <- paste0(final$player,"_",final$ppr)
  3. dPlotPPR <- dPlot(
  4. x = c("player","ppr"),
  5. y = "ave",
  6. groups = "player",
  7. data = subset(subset(final,category %in% c("wr")), rank < 20),
  8. type = "bubble",
  9. height = 400,
  10. width = 800,
  11. bounds = list( x = 20, y = 20, width = 700, height = 300)
  12. )
  13. dPlotPPR$xAxis ( orderRule = "ave" )
  14. dPlotPPR