无法在 plotly express choropleth 中隐藏颜色条
Can't hide colorbar in plotly express choropleth
我已经尝试关注讨论这个问题的文档和各种帖子,但我一无所获。我正在从 plotly 示例中渲染 choropleth 县地图,但我似乎无法弄清楚如何隐藏颜色条。这是我试过的:
import plotly.express as px
from urllib.request import urlopen
import json
import pandas as pd
with urlopen('https://raw.githubusercontent.com/plotly/datasets/master/geojson-counties-fips.json') as response:
counties = json.load(response)
df = pd.read_csv("https://raw.githubusercontent.com/plotly/datasets/master/fips-unemp-16.csv",
dtype={"fips": str})
fig = px.choropleth(
df,
geojson=counties,
locations='fips',
color='unemp',
color_continuous_scale="Viridis",
range_color=(0, 12),
scope="usa",
labels={'unemp':'Unemployment'}
)
fig.update_layout(margin={"r":0,"t":0,"l":0,"b":0}, coloraxis=dict(showscale=False))
fig.update(layout_coloraxis_showscale=False)
fig.update_traces(showlegend=False)
fig.update(layout_showlegend=False)
fig.update_traces(showscale=False)
fig.show()
我的结果总是一样的:
我建议您使用
检查您的剧情版本
import plotly
plotly.__version__
如果小于5.1.0
那么我建议你使用下面的pip命令更新它
pip install -Iv plotly==5.1.0
我只使用了您的代码,使用这个特定版本的 plotly 我得到了一张没有颜色条的地图
我已经尝试关注讨论这个问题的文档和各种帖子,但我一无所获。我正在从 plotly 示例中渲染 choropleth 县地图,但我似乎无法弄清楚如何隐藏颜色条。这是我试过的:
import plotly.express as px
from urllib.request import urlopen
import json
import pandas as pd
with urlopen('https://raw.githubusercontent.com/plotly/datasets/master/geojson-counties-fips.json') as response:
counties = json.load(response)
df = pd.read_csv("https://raw.githubusercontent.com/plotly/datasets/master/fips-unemp-16.csv",
dtype={"fips": str})
fig = px.choropleth(
df,
geojson=counties,
locations='fips',
color='unemp',
color_continuous_scale="Viridis",
range_color=(0, 12),
scope="usa",
labels={'unemp':'Unemployment'}
)
fig.update_layout(margin={"r":0,"t":0,"l":0,"b":0}, coloraxis=dict(showscale=False))
fig.update(layout_coloraxis_showscale=False)
fig.update_traces(showlegend=False)
fig.update(layout_showlegend=False)
fig.update_traces(showscale=False)
fig.show()
我的结果总是一样的:
我建议您使用
检查您的剧情版本import plotly
plotly.__version__
如果小于5.1.0
那么我建议你使用下面的pip命令更新它
pip install -Iv plotly==5.1.0
我只使用了您的代码,使用这个特定版本的 plotly 我得到了一张没有颜色条的地图