mirror of
https://github.com/Azure/MachineLearningNotebooks.git
synced 2025-12-19 17:17:04 -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
|