使用全息视图,如何设置标题?

2024-09-29 02:28:38 发布

您现在位置:Python中文网/ 问答频道 /正文

在使用全息视图和Bokeh时,我一直在尝试设置一个标题。我把三个图叠加在一起。代码如下:

%%opts Curve [width=900 height=400  show_grid=True tools=['hover'] finalize_hooks=[apply_formatter]]
%%opts Curve (color=Cycle('Category20'))
%%opts Overlay [ legend_position='bottom' ] Curve (muted_alpha=0.5 muted_color='black' )

actual_curve = hv.Curve(df_reg_test, 'date', 'y', label='Actual')
existing_curve = hv.Curve(df_reg_test, 'date', 'Forecast Calls', label='Existing Forecast')
xgb_curve = hv.Curve(df_reg_test, 'date', 'xgb_pred', label='New Forecast')

actual_curve * existing_curve * xgb_curve

情节如下: Holoview Plot

如你所见,单个曲线的标签在图例中显示得很好,但我在图的顶部没有标题。在

如何手动设置标题?在


Tags: test标题dfdatereglabelcolorhv
2条回答

我发现可以在覆盖选项中添加title_format=“my new title”选项:

%%opts Curve [width=900 height=400  show_grid=True tools=['hover'] finalize_hooks=[apply_formatter]]
%%opts Curve (color=Cycle('Category20'))
%%opts Overlay [ legend_position='bottom' title_format="my new title"] Curve (muted_alpha=0.5 muted_color='black' )

actual_curve = hv.Curve(df_reg_test, 'date', 'y', label='Actual')
existing_curve = hv.Curve(df_reg_test, 'date', 'Forecast Calls', label='Existing Forecast')
xgb_curve = hv.Curve(df_reg_test, 'date', 'xgb_pred', label='New Forecast')

actual_curve * existing_curve * xgb_curve

现在我的情节有了一个标题:

Holoviews Plot with Title

另一种向套印格式添加通用标题的方法是使用:
选择覆盖(title='New title for Overlay')

下面是一个在全息图覆盖图上设置标题的示例:

# import libraries
import numpy as np
import holoviews as hv
from holoviews import opts
hv.extension('bokeh')

# create some sample data
data1 = np.random.normal(size=[50, 2])
data2 = np.random.normal(size=[50, 2])

# create your overlay plot
all_plots = hv.Scatter(data1, label='data1') * hv.Scatter(data2, label='data2')

# add your title to your overlay with opts.Overlay()
all_plots.opts(opts.Overlay(title='New title for Overlay'))

结果图如下:

New title on Overlay Holoviews graph

相关问题 更多 >