gpt4 book ai didi

python - 图表上的比例问题

转载 作者:行者123 更新时间:2023-12-01 00:54:39 24 4
gpt4 key购买 nike

下面我有一个用plotly(python)制作的图表。我已将图表 y 轴设置为对数刻度。但我不知道为什么有 1000 到 10k 之间的中间值,如 (2,3,4,5,6...)。他们代表什么?以及如何删除它们?我一定想删除。 ![enter image description here ] 1

axis的属性如下

trace1 = {
"x": [1, 2, 3, 4, 5],
"y": [500, 900, 1100, 10000, 300],
"marker": {
"color": 'rgb(255,140,0)',

},
data = Data([trace1])
layout = {
"autosize": False,
"bargap": 0.0,
"height": 480,
"hovermode": "closest",
"margin": {
"r": 63,
"t": 57,
"b": 52,
"l": 80,
"pad": 0
},
"showlegend": False,
"titlefont": {
"color": "#000000",
"size": 12.0
},
"width": 640,
"xaxis": {
"anchor": "y",
"domain": [0.0, 1.0],
"mirror": "ticks",
"nticks": 9,
"range": [0.5, 10.5],
"showgrid": False,
"showline": True,
"side": "bottom",
"tickfont": {"size": 20.0},
"ticks": "inside",
"title": "x-axes",
"titlefont": {
"color": "black",
"size": 22.0
},
"type": "linear",
"zeroline": False
},
"yaxis": {
"tickmode":'auto',
"ticks":'outside',
"tick0":0,
"dtick":100,
"ticklen":8,
"tickwidth":4,
"anchor": "x",
"mirror": "ticks",
"domain": [0.0, 1.0],
"nticks": 6,
"showgrid": False,
"showline": True,
"side": "left",
"tickfont": {"size": 20.0},
"ticks": "inside",
"title": "y-axis",
"titlefont": {
"color": "black",
"size": 22.0
},
"type": "log",
"zeroline": False,
}
}
fig = dict(data=data, layout=layout)
py.plot(fig, filename='"log-no-log"')

最佳答案

数字代表中间倍数,直到达到下一个数量级。前 3、4、5 等代表 100 的倍数,直到达到刻度 1000。然后它将是 1000 的倍数的标记,直到达到 10k。由于采用对数刻度,它们不是等距绘制的。

因此,如果您想从图表中读取您的值(value),例如,它们可能会很有用。 x=2 是。

关于python - 图表上的比例问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56313949/

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