nba_api
nba_api copied to clipboard
Is there a way to get advanced data split over the season for a player ?
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
Did you find any ways to do it? I'm also looking for having access to yearly summarized advanced statistics. Thanks!
+1
Maybe this endpoint would help you? PlayerDashboardByYearOverYear
or PlayerDashboardByGameSplits
those stats aren't advanced ones
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
thanks a lot