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

Folium heatmap not displaying in Jupiter notebook in Internet Explorer

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

但是,当我尝试在地图上绘制彩色点时,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

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

现在我想在地图上加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

这给了我这个漂亮的屏幕:

为什么没有地图?

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

提前致谢!

所以 Anaconda 在 Internet Explorer 中打开了 Jupyter Notebook,但 没有用。当 运行 它在 Chrome 时它工作 就好了。要更改浏览器,Anaconda 在检查问题 how to open Jupyter notebook in chrome on windows 中打开它。感谢@BobHaffner 的提示!