修改 plotly 直方图的悬停模板。

问题描述 投票:0回答:0

我想修改一个plotly直方图的hovertemplate。到目前为止,还找不到办法。

  1. 四舍五入的方法

  2. 删除直方图的名称(这里:"2012","2013")。

  3. 添加一个名称来表明这些值代表什么

希望的悬浮文本。Bin-range: -1.24, 3.31

甚至更好的选择(带连字符的范围)。Bin-range: -1.24 - 3.31

有什么想法吗?

import plotly.figure_factory as ff
import numpy as np
import pandas as pd

df = pd.DataFrame({'2012': np.random.randn(200),
                   '2013': np.random.randn(200)+1})

fig = ff.create_distplot([df[c] for c in df.columns], 
                         df.columns, bin_size=.25, show_rug=False)
fig.show()
python plotly
© www.soinside.com 2019 - 2024. All rights reserved.