pybaseball icon indicating copy to clipboard operation
pybaseball copied to clipboard

Add QS to fangraphs get_pitching_stats

Open jarrett32 opened this issue 1 year ago • 0 comments

Issue: https://github.com/jldbc/pybaseball/issues/50

Looks like fan graphs added QS as a stat, and maybe a few more (table rows 392-420) that we could add in the future, but this PR quickly adds QS to the end of the table

Example:

from pybaseball.pitching_leaders import pitching_stats

t = pitching_stats(2024).reset_index(drop=True)
for col in t.columns:
    print(col, t[col][0])

jarrett32 avatar May 09 '24 02:05 jarrett32