getPartialGamelog {retrosheet} | R Documentation |
Partial parser for game-log files
Description
Instead of returning the entire file, this function allows the user to choose the columns and date for game-log data.
Usage
getPartialGamelog(year, glFields, date = NULL)
gamelogFields
Arguments
year |
A single four-digit year. |
glFields |
character. The desired game-log columns. This should be a
subset of |
date |
One of either NULL (the default), or a single four-digit character string identifying the date 'mmdd' |
Format
An object of class character
of length 161.
Value
-
getPartialGamelog
- A data table with dimensionslength(date)
xlength(glFields)
ifdate
is not NULL, otherwise the row dimension is the number of games for the given year. -
gamelogFields
- A character vector of possible values to choose from for theglFlields
argument ingetPartialGamelog
.
Examples
## Get Homerun and RBI info for the 2012 season, with park ID
f <- grep("HR|RBI|Park", gamelogFields, value = TRUE)
getPartialGamelog(2012, glFields = f)
## Get Homerun and RBI info for August 25, 2012 - with park ID
getPartialGamelog(glFields=f, date = "20120825")
[Package retrosheet version 1.1.6 Index]