mirror of
https://github.com/Azure/MachineLearningNotebooks.git
synced 2025-12-22 02:25:12 -05:00
5 lines
131 B
Python
5 lines
131 B
Python
def transform(df, index):
|
|
df['Latitude'].fillna('0', inplace=True)
|
|
df['Longitude'].fillna('0', inplace=True)
|
|
return df
|