我正在制作一张美国地图,以反映各州的贷款总额。 我的代码如下:
my_dataframe = pd.read_csv("exports/loans-state.csv")
# Read in our map:
my_USA_map = 'Users/maniesha/folium-master/examples/data/us-
states.json'
# Read in our map:
my_USA_map = '../data/us-states.json'
map.choropleth(geo_data=my_USA_map, data=my_dataframe,
columns=['addr_state', 'Loans by state'],
key_on='feature.id',
fill_color='YlGn', fill_opacity=0.7, line_opacity=0.2,
legend_name='Loan amount')
map
我得到的错误附在这里:[在此处输入图片描述] [
我不太了解错误消息及其与我的代码的关系。 有人可以提供一些指针吗?预先感谢!