使用 holoviews / hvplot 更改图例位置

Change legend position using holoviews / hvplot

Hvplot 默认图例的位置在绘图的右侧。
如何更改此默认图例位置?

import numpy as np
import pandas as pd
import hvplot
import hvplot.pandas
import holoviews as hv

data = np.random.normal(size=[50, 2])
df = pd.DataFrame(data, columns=['a', 'b'])
df.hvplot.line()

您可以通过在代码中添加 .opts(legend_position='top_left') 将图例位置更改为左上角。

df.hvplot.line().opts(legend_position='top_left')

如果您想将图例放置在内部您的情节中,您可以从以下选项中进行选择:

['top_right', 'top_left', 'bottom_left', 'bottom_right']

如果您想将您的图例放在您的地块之外,您可以从以下选项中进行选择:

['right', 'left', 'top', 'bottom']