pybaseball
pybaseball copied to clipboard
Not all players appear when using batting_stats
I am using pybaseball 2.2.1, but for some reason when I try and using batting_stats, I don't get data for every MLB player. For example, if I filter for just NYY players, I only get four of them.
Is anyone else experiencing this?
If you read through the underlying code, you'll see that qual='y' as a default. Meaning you're only seeing qualifying hitters. By setting qual='n' it returns 1.5k hitters:

If you read through the underlying code, you'll see that qual='y' as a default. Meaning you're only seeing qualifying hitters. By setting qual='n' it returns 1.5k hitters:
Thank you so much!