getPartialGamelog: Partial parser for game-log files

View source: R/getPartialGamelog.R

getPartialGamelogR 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 gamelogFields, and not the entire vector.

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 dimensions length(date) x length(glFields) if date 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 the glFlields argument in getPartialGamelog.

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")



retrosheet documentation built on July 10, 2023, 2:02 a.m.