如何将水平线添加到 hvplot ?Holoviews 有 .HLine 和 .VLine 但不知道如何通过 pandas.hvplot 或 hvplot 访问它
这是一个示例数据框和绘图脚本。
import pandas as pd
import hvplot.pandas
df = pd.DataFrame({'A':[100], 'B':[20]})
df = df.reset_index()
print(df)
# index A B
#0 0 100 20
# create plot
plot = df.hvplot.bar(y=['A', 'B'], x='index',
rot=0, subplots=False, stacked=True)
plot