I have the below data in a MySQL table:
As you can see, there is a lot of missing data in the final five columns. I was able to find another source for this data and put it into a Pandas dataframe as shown below:
So I'm wondering if there's an easy way to impute the data from the Pandas data frame by doing a lookup on the player_first_name
and player_last_name
columns. I'm able to load the database table into Python and upload new data into it via Python, but not sure of a simple solution here. Any suggestions are welcome!