【发布时间】:2021-11-14 00:15:24
【问题描述】:
df = gpd.read_file("world-polygon.shp")
df.head()
df = df(['Country', 'Confirmed'])
data_for_map = df.rename(index=str, columns={'Country':'Regions','Confirmed':'Conf'})
data_for_map.head()
它给了我错误
TypeError: 'GeoDataFrame' object is not callable
【问题讨论】:
标签: geopandas