I was trying to figure out how to do this with accolades. You can easily pull all players with X points, Y assists, and Z rebounds averaged in their career. But I was hoping to search, for example, players with 20+ ppg career average, 2+ MVP’s and 2+ championships. I haven’t been able to find this. Any help?
This is it.
TDs = int(input("How many TDs did this QB throw?"))
INTs = int(input("How many interceptions did this QB throw?"))
WAR = TDs / (INTs*4)
Comp = int(input("How many completed passes did this QB throw?"))
nCTD = TDs/Comp
Att= int(input("How many passing attempts did this QB throw?"))
nCTD = nCTD / (Att/(Comp*TDs))
WAR= WAR* (nCTD*(Comp/Att))
I'm working on a project that "predicts" the result of an NBA game based on the team's stats. Is there a way to find a team's season stats before a specific game? For example, if the 2018 Pacers scored 8000 points, grabbed 3000 rebounds, and totaled 1800 assists throughout the 2018 season before playing the 2018 Heat, would it be possible to find those values somewhere on Basketball-Reference by clicking on the 2018 Pacers vs Heat game or something?
In other words, is there a way to find a team's stats going into a game?
https://www.basketball-reference.com/leagues/NBA_1989_rookies-season-stats.html
Way too many players are on this page, including many players who were simply not rookies in 1989. This problem appears to exist for every season of Kareem's career? Although I haven't looked into it that much, but yeah, just saying.
Members
Online