Learn R Programming

baseballDBR (version 0.1.2)

OPS: Batting: Calculate on base percentage plus slugging (OPS)

Description

Find the OPS for batters with more than zero hits. Required fields from the batting table are "H", "X2B", "X3B", "HR", "BB", "HBP", "AB" and "SF."

Usage

OPS(dat = NULL)

Arguments

dat

A data frame you would wish to calculate. The data frame must have the same column names found in The Lahman package or the Chadwick Bureau GitHub repository.

See Also

Other Batting functions: BABIP, BA, BBpct, CTpct, HRpct, ISO, Kpct, OBP, PA, RC2002, RCbasic, RCtech, SLG, TBs, XBHpct, XBperH, wOBA, wRAA, wRC

Examples

Run this code

data("Batting2016")
head(Batting2016)

Batting2016$OPS <- OPS(Batting2016)

Run the code above in your browser using DataLab