gpt4 book ai didi

Python Plotly,如何去除背景水平线?

转载 作者:太空宇宙 更新时间:2023-11-03 15:35:44 29 4
gpt4 key购买 nike

如何去掉图表上的背景水平线?代表音阶 5、10、15 等的线条。您可以在下面找到代码:

enter image description here

# Plotting waterfall chart for Years of Experience lost on DA Team

x_data = ['A', 'B', 'C', 'D', 'E']
y_data = [13, 23.5, 17.5, 10, 2.5] # y_data for positioning the annotations
text = ['27', '7', '5', '10', '5']

# Base
Base = go.Bar(x=x_data, y=[0, 20, 15, 5, 0], marker=dict(color='rgba(1,1,1, 0.0)',))
# Total
Total = go.Bar(x=x_data, y=[27, 0, 0, 0, 0], marker=dict(color='#003A6F',line=dict(color='k',width=1,)))
# Individuals
Individuals = go.Bar(x=x_data, y=[0, 7, 5, 10, 0], marker=dict( color='#FFE512',line=dict(color='k',width=1,)))
# Years of Experience Left
Years_left = go.Bar(x=x_data, y=[0, 0, 0, 0, 5], marker=dict(color='00AB39',line=dict(color='k',width=1,)))

# Put all traces in one "data" list
data = [Base, Total, Individuals, Years_left]

# Layout takes care of things like chart title, x and y axis titles and font sizes, etc.
layout = go.Layout(
title='Chart One',
barmode='stack',
yaxis=dict(title='Number of Years', titlefont=dict(size=yaxis_font_size)
, tickfont=dict(size=yaxis_font_size)),
xaxis=dict(title='Names', titlefont=dict(size=xaxis_font_size)
, tickfont=dict(size=yaxis_font_size)) ,
showlegend=False
)

annotations = []
annotations_colors = ['rgba(245, 246, 249, 1)', 'k', 'k', 'k', 'rgba(245, 246, 249, 1)'] # assign colors to annotations
for i in range(0, 5):
annotations.append(dict(x=x_data[i], y=y_data[i], text=text[i], font=dict(family='Arial', size=14, color=annotations_colors[i]), showarrow=False,))
layout['annotations'] = annotations

fig = go.Figure(data=data, layout=layout) # Standard plotly way to assign data and layout
iplot(fig, filename='Chart One')

谢谢!

最佳答案

启发性的例子可以在 https://plot.ly/python/axes/ 找到。

只需将 showgrid=False 添加到您的 yaxisxaxis 字典即可。

您的 xaxis 的所有 dict 选项都可以在 https://plot.ly/python/reference/#layout-xaxis 找到(y 轴类似地位于 https://plot.ly/python/reference/#layout-yaxis )

关于Python Plotly,如何去除背景水平线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42535785/

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