我将第一次使用 Pandas 和 Matplotlib 在 python 3 中做一个 heatMap。我尝试在 jupyter notebook 中使用插件 gmaps。我上传了一个包含 2 列(长、纬度)的 csv 文件。
import gmaps
import gmaps.datasets
gmaps.configure(api_key=os.environ["GOOGLE_API_KEY")
locations = gmaps.datasets.load_dataset("my_file.csv")
fig = gmaps.figure()
fig.add_layer(gmaps.heatmap_layer(loactions))
fig
我收到以下错误:
676 except KeyError:
677 # raise KeyError with the original key value
--> 678 raise KeyError(key) from None
679 return self.decodevalue(value)
680
KeyError: 'GOOGLE_API_KEY'
我怎样才能读取我的文件来解决它?谢谢
摇曳的蔷薇
相关分类