Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有标签列的熊猫数据框...
x y true_x true_y
我想绘制一条用点true_xvstrue_y覆盖的yvs曲线x。
true_x
true_y
y
x
这些教程让我感到困惑,因为它们只描述了简单的 2D 和 3D 示例。
我们即将开始在其他文档上进行广泛的工作,因此这是很好的反馈。要创建这样一个简单的绘图,只需使用适当的声明一个Curve和一个Scatter对象kdims,vdims并使用运算符覆盖它们mul:
Curve
Scatter
kdims
vdims
mul
curve = hv.Curve(df, kdims=['true_x'], vdims=['true_y']) scatter = hv.Scatter(df, kdims=['x'], vdims=['y']) curve * scatter