我正在使用plotly.js尝试表示统计数据集。
即绘制尺寸的直方图。
我的踪迹如下
const trace = {
type: 'histogram',
x: [1.8, 1.6, 1.6, 1.65, 1.9, 1.62, 1.76, 1.74, 1.82, 1.7]
}
然后我将其与Plotly.newPlot('myDiv', [trace]);
一起使用
但是我得到的直方图的步长为0.1,这意味着对于1.6-1.69、1.7-1.79和1.8-1.89,我仅获得3列。
问题很简单,如何将其更改为具有例如0.05的步长?
答案 0 :(得分:0)
例如,您可以使用xbins属性
const trace = {
type: 'histogram',
xbins: {size: 0.05, start: 0, end: 2},
x: [1.8, 1.6, 1.6, 1.65, 1.9, 1.62, 1.76, 1.74, 1.82, 1.7]
}