gpt4 book ai didi

python - Plotly:如何为等值线图设置颜色条位置?

转载 作者:行者123 更新时间:2023-12-04 08:09:25 28 4
gpt4 key购买 nike

我在文档中找不到任何关于控制颜色栏放置位置的信息,只是是否应该显示它以及使用什么颜色比例等。可以这样做吗?
如果有帮助,我正在使用 Dash 实现我的等值线图。

最佳答案

答案:

fig.data[0].colorbar.x=-0.1
或:
fig.update_layout(coloraxis_colorbar_x=-0.1)

一些细节:
你还没有提供任何代码,所以我会引用 example from the docs其中颜色条沿 x 轴的位置默认为 1.2 .您可以直接通过以下方式进行更改,例如:
fig.data[0].colorbar.x=-0.1
并得到:
enter image description here
完整代码:
import plotly.graph_objects as go

import pandas as pd
df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/2011_us_ag_exports.csv')

fig = go.Figure(data=go.Choropleth(
locations=df['code'], # Spatial coordinates
z = df['total exports'].astype(float), # Data to be color-coded
locationmode = 'USA-states', # set of locations match entries in `locations`
colorscale = 'Reds',
colorbar_title = "Millions USD",
))

fig.update_layout(
title_text = '2011 US Agriculture Exports by State',
geo_scope='usa', # limite map scope to USA
)

fig.data[0].colorbar.x=-0.1
fig.show()

关于python - Plotly:如何为等值线图设置颜色条位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66055724/

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