gpt4 book ai didi

python - 突出显示(选择)holoviews 条形图中的一个条形

转载 作者:行者123 更新时间:2023-12-01 06:25:01 25 4
gpt4 key购买 nike

考虑以下最小示例:

import pandas as pd
import holoviews as hv

hv.extension('bokeh')

df = pd.DataFrame({
"Cat": ["foo", "bar", "hello", "world"],
"Values": [1, 3, 2, 4]
})

bars = hv.Bars(df)
bars

这会产生:

enter image description here

我的问题是如何突出显示其中一个栏?

基于the docs中的提示我尝试过类似的事情:

bars = hv.Bars(df)
highlight_bar = bars[2:3]
bars * highlight_bar

但是这返回了错误TypeError: '>=' not support between 'str' and 'int'。我没能解决这个问题。有什么想法吗?

最佳答案

原来答案手册中......

bars = hv.Bars(df)
highlight_bar = bars.iloc[2:3]
bars * highlight_bar

关于python - 突出显示(选择)holoviews 条形图中的一个条形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60203597/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com