Guest User

Untitled

a guest
Jun 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. > library(readr)
  2. > pitch_table <- read_csv("~/pitchFxScraper/pitch_table.csv")
  3. Parsed with column specification:
  4. cols(
  5. .default = col_character(),
  6. year = col_integer(),
  7. st_fl = col_logical(),
  8. regseason_fl = col_logical(),
  9. playoffs_fl = col_logical(),
  10. game_id = col_integer(),
  11. interleague_fl = col_logical(),
  12. inning = col_integer(),
  13. bat_home_id = col_integer(),
  14. park_id = col_integer(),
  15. pit_id = col_integer(),
  16. bat_id = col_integer(),
  17. pa_ball_ct = col_integer(),
  18. pa_strike_ct = col_integer(),
  19. outs_ct = col_integer(),
  20. pa_terminal_fl = col_logical(),
  21. pa_event_cd = col_integer(),
  22. start_bases_cd = col_integer(),
  23. end_bases_cd = col_integer(),
  24. event_outs_ct = col_integer(),
  25. ab_number = col_integer()
  26. # ... with 5 more columns
  27. )
  28. See spec(...) for full column specifications.
  29. |==================================================================| 100% 408 MB
  30. > View(pitch_table)
  31. > library(ggplot2)
Add Comment
Please, Sign In to add comment