Test Your Data Manipulation Knowledge
Learn to use list and zip for geocoding.
We'll cover the following...
We'll cover the following...
In the previous code widget, we derived geom
using map(str)
.
Press + to interact
df['geom'] = df['lat'].map(str) + ',' + df['lon'].map(str)
...