在散景中使用 € 作为 NumeralTickFormatter 中的货币符号

Use € as currency symbol in NumeralTickFormatter from bokeh

我想使用 € 符号而不是 $ 在 holoviews (hv.Bars) 创建的散景图中格式化我的数字。

formatter = NumeralTickFormatter(format=f"{€ 0.00 a)")

不幸的是,这只会产生格式化的数字而不是欧元符号

此外,此处提到的解决方法

formatter = PrintfTickFormatter(format=f'€ 0.00 a') 

无效。

其实我认为散景应该适应这一点,并提供添加任何东西作为符号的可能性。

这可以使用 FuncTickFormatter 和一些 TypeScript 代码来完成。

from bokeh.models import FuncTickFormatter
p.xaxis.formatter = FuncTickFormatter(code='''Edit some typescript here.''')

最小示例 如果您的目标是为 0 到 1e7 之间的值编辑 x 轴,这应该可行。对于小于 1000 的值,select 没有单位,对于 1000 和 1e6 之间的值,k,对于更大的值,m

from bokeh.plotting import figure, output_notebook, show
from bokeh.models import FuncTickFormatter
output_notebook()

# create a new plot with the toolbar below
p = figure(plot_width=400, plot_height=400,
           title=None, toolbar_location="below")
x = [xx*1e6 for xx in range(1,6)]
y = [2, 5, 8, 2, 7]
p.circle(x, y, size=10)
p.xaxis.formatter = FuncTickFormatter(code='''
                                            if (tick < 1e3){
                                                var unit = ''
                                                var num =  (tick).toFixed(2)
                                              }
                                              else if (tick < 1e6){
                                                var unit = 'k'
                                                var num =  (tick/1e3).toFixed(2)
                                              }
                                              else{
                                                var unit = 'm'
                                                var num =  (tick/1e6).toFixed(2)
                                                }
                                            return `€ ${num} ${unit}`
                                           '''
                                           )

show(p)

输出

NumeralTickFormatterPrintfTickFormatter 不同,使用完全不同的格式字符串。如果要使用PrintfTickFormatter,需要给它一个有效的“printf”格式字符串:

PrintfTickFormatter(format='€ %0.2f')

描述了所有有效的 printf 格式in the documentation