i'm trying get better at Python and decided to do some analysis on one of my passions. Wrestling! In this case, Japanese Wrestling!
Basically I'm trying to update values in one data frame from another data frame. Here's what my first data frame looks like
| | Wrestler | Matches | DMR |
| 0 | TETSUYA NAITO | 9 | 0 |
| 1 | HIROSHI TANAHASHI | 9 | 0 |
| 2 | BAD LUCK FALE | 9 | 0 |
| 3 | KOTA IBUSHI | 9 | 0 |
| 4 | ZACK SABRE JR. | 9 | 0 |
| 5 | HIROOKI GOTO | 9 | 0 |
| 6 | TOMOHIRO ISHII | 9 | 0 |
| 7 | TOGI MAKABE | 9 | 0 |
| 8 | YOSHI-HASHI | 9 | 0 |
| 9 | YUJI NAGATA | 9 | 0 |
The column I'm trying to update is DMR*(Dave Meltzer Ratings)* from another data frame that is generated from some data I input:
| Wrestler | DMR |
| BAD LUCK FALE | 3.166667 |
| HIROOKI GOTO | 3.694444 |
| HIROSHI TANAHASHI | 4.111111 |
| KOTA IBUSHI | 4.222222 |
| TETSUYA NAITO | 4 |
| TOGI MAKABE | 3.611111 |
| TOMOHIRO ISHII | 4.25 |
| YOSHI-HASHI | 3.638889 |
| YUJI NAGATA | 4.138889 |
| ZACK SABRE JR. | 3.611111 |
I have a feeling it's something simple but I couldn't find anything that would explain how to do it. Any help on this would be greatly appreciated.
Thanks, Shan