nba_api icon indicating copy to clipboard operation
nba_api copied to clipboard

Is there a way to get advanced data split over the season for a player ?

Open GiovanniZanitti opened this issue 1 year ago • 6 comments

NBA API Version

v1.4.1

Issue

I'm looking for access to the "advanced split" we can find here . I know that we can have this kind of data at the endpoint boxscoreadvancedv2.py but I need a way to have it sumarise over the season.

Can any one help me ?

Code

No response

GiovanniZanitti avatar Nov 28 '23 16:11 GiovanniZanitti

Did you find any ways to do it? I'm also looking for having access to yearly summarized advanced statistics. Thanks!

Lu-EK avatar Jan 05 '24 17:01 Lu-EK

+1

quirkles avatar Feb 01 '24 02:02 quirkles

Maybe this endpoint would help you? PlayerDashboardByYearOverYear or PlayerDashboardByGameSplits

prasunnyD avatar Feb 22 '24 16:02 prasunnyD

those stats aren't advanced ones

ChristopherChari avatar Feb 27 '24 15:02 ChristopherChari

adv_stats = PlayerDashboardByYearOverYear(measure_type_detailed="Advanced").get_data_frames() adv_stats = PlayerDashboardByGameSplits(measure_type_detailed='Advanced').get_data_frames()

These should give you the advanced stats. You need to specific "Advanced" in the parameters per the parameters documentation

prasunnyD avatar Feb 27 '24 15:02 prasunnyD

thanks a lot

ChristopherChari avatar May 04 '24 13:05 ChristopherChari