作者您好,我在pycharm +pyecharts0.2.3版本下执行
from pyecharts import Geo
data = [
("海门", 9),("鄂尔多斯", 12),("招远", 12),("舟山", 12),("齐齐哈尔", 14),("盐城", 15),
("赤峰", 16),("青岛", 18),("乳山", 18),("金昌", 19),("泉州", 21),("莱西", 21),
("日照", 21),("胶南", 22),("南通", 23),("拉萨", 24),("云浮", 24),("梅州", 25)...]
geo = Geo("全国主要城市空气质量", "data from pm2.5", title_color="#fff", title_pos="center",
width=1200, height=600, background_color='#404a59')
attr, value = geo.cast(data)
geo.add("", attr, value, visual_range=[0, 200], visual_text_color="#fff", symbol_size=15, is_visualmap=True)
geo.show_config()
geo.render()
输出了
海门 coordinates is not found
鄂尔多斯 coordinates is not found
招远 coordinates is not found
舟山 coordinates is not found
齐齐哈尔 coordinates is not found
盐城 coordinates is not found
赤峰 coordinates is not found
青岛 coordinates is not found
乳山 coordinates is not found
想问一下是为什么呢?
谢谢
Python 数据可视化?pyecharts 是一个用于生成 Echarts 图表的类库。Echarts 是百度开源的一个数据可视化 JS 库。主要用于数据可视化。 安装 pyecharts 兼容 P...