I have a csv file with 2 column store_name and store_location that some store_location is missing. And I want to fill missing data with data in same column based on value in another column.
Below is my csv file:
import pandas as pd
df = pd.read_csv('https://raw.githubusercontent.com/hoatranobita/app_to_cloud_4/main/store_location.csv')
Here is my expected Output:
I tried to find solutions but still not find out.
Thanks.

