gpt4 book ai didi

python - 在 Internet Explorer 的 Jupyter Notebook 中不显示 Folium 热图

转载 作者:行者123 更新时间:2023-11-28 18:12:53 32 4
gpt4 key购买 nike

我正在尝试绘制类似于 https://alysivji.github.io/getting-started-with-folium.html 中的热图.输出应该类似于下图,但针对的是北海区域。

enter image description here

但是,当我尝试在 map 上绘制彩色点时,Jupyter 笔记本输出为空白。这是我的代码:

import folium
from folium import plugins
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns

m = folium.Map([52.5, 2], zoom_start=5.5)
m

给我这个,这就是我想要的:

enter image description here

现在我想在 map 上加10个点,我的数据和代码如下:

divvyStations =df = pd.DataFrame({'Xpos': Xpos1[0], 'Ypos': Ypos1[0],'Density': Density})
print(divvyStations)

输出:

   Density      Xpos       Ypos
0 1 -3.758242 50.099575
1 1 -3.780331 50.110645
2 1 -3.740984 50.113747
3 1 -3.802421 50.121719
4 1 -3.763073 50.124821
5 1 -3.723726 50.127922
6 1 -3.824510 50.132793
7 1 -3.785162 50.135895
8 1 -3.745815 50.138992
9 1 -3.706468 50.142094

然后我尝试绘制点:

for index, row in divvyStations.iterrows():
folium.CircleMarker([row['Ypos'],row['Xpos']],
radius=15,
#popup=row['Density'],
fill_color="#3db7e4", # divvy color
).add_to(m)
m

这给了我这个漂亮的屏幕: enter image description here

为什么没有 map ?

我已经检查了问题:Folium map not displaying , Python Folium Map Not Displaying

提前致谢!

最佳答案

因此,Anaconda 在 internet explorer 中打开了 Jupyter Notebook,但它不起作用。在 Chrome 中运行时 运行良好。要更改浏览器,Anaconda 在检查问题中打开它 how to open Jupyter notebook in chrome on windows .感谢@BobHaffner 的提示!

关于python - 在 Internet Explorer 的 Jupyter Notebook 中不显示 Folium 热图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50162521/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com