bowl_econ: Bowler Economy Rate

View source: R/bowling_basics.R

bowl_econR Documentation

Bowler Economy Rate

Description

Calculates bowlers' economy rate over six ball overs, five ball sets or per hundred balls.

Usage

bowl_econ(balls_bowled, runs_conceded, type = "overs")

Arguments

balls_bowled

number of balls bowled. Data in terms of six ball overs, please convert to overs_to_balls to get it terms of balls bowled

runs_conceded

total runs conceded by bowler across the overs, sets or per hundred balls bowled.

type

whether we are calculating economy over six ball overs, sets or per hundred balls bowled. Options "overs", "sets", "per_100". Defaults to overs

Value

Economy rate across the number of overs, sets or per hundred balls bowled.

Additional Information

Bowling economy rate is average number of runs scored per over or sets bowled.

  • If using overs, a value of 9.5 indicates an average of 9.5 runs are scored per six ball over bowled.

  • If using sets, a value of 9.5 indicates an average of 9.5 runs are scored per five ball set bowled.

  • If using here, a value of 9.5 indicates an average of 9.5 runs are scored per hundred balls bowled. This the official statistic used by The Hundred.

    The higher the number the more detrimental is for the bowler. Runs scored through byes & leg byes are excluded from runs conceded by the bowler, however wides and no-balls are included in the bowler's figures.
    More info here.

Examples

bowl_econ(balls_bowled = 60, runs_conceded = 45)
bowl_econ(
  balls_bowled = overs_to_balls(overs = 7.1),
  runs_conceded = 26,
  type = "overs"
)

bowl_econ(balls_bowled = 30, runs_conceded = 35, type = "sets")

bowl_econ(balls_bowled = 22, runs_conceded = 19, type = "per_100")


howzatR documentation built on Sept. 9, 2022, 5:08 p.m.