使用 Datashader 和 Holoviews 的具有多种颜色和图例的时间序列

Timeseries with multiple colors and legend using Datashader and Holoviews

我想绘制一个包含 3 列的时间序列数据框,每条曲线一列。我希望每条曲线都有自己的颜色并显示图例,默认情况下 hvplot()

这是一个独立的例子:

import numpy as np
import pandas as pd
import hvplot.pandas
import datetime
from holoviews.operation.datashader import datashade

n=1000
start = datetime.datetime(2010, 10, 1, 0)   # Start time
datetimerange = [start + datetime.timedelta(minutes=1)*i for i in range(n)]
A = np.random.randint(5, size=n)
B = np.random.randint(20, 40, size=n)
C = np.random.randint(10, 20, size=n)
d = {'datetime': datetimerange, 'A': A, 'B': B, 'C': C}
df = pd.DataFrame(d).set_index('datetime')

df.hvplot(cmap=['red', 'blue', 'green']) + datashade(df.hvplot(cmap=['red', 'blue', 'green']))

结果如下(左边没有datashader,右边有datashader):

将绘图传递给数据着色器时,颜色和图例会丢失。使用 hvplotdatashade=True 参数具有相同的结果。

a tutorial on timeseries plotting in the Datashader documentation but it's quite complicated, it uses datashader.transfer_functions.shade() as the basis to manipulate the graphs without much introduction on how this works and the API isn't much clearer个。我只想保留 bokeh/hvplot 默认提供的这些基本绘图功能,我不确定 datashader 不保留它们的原因,所以我不知道要修复什么。

如何向数据着色器发出信号以保留不同的颜色并绘制图例?

这是答案的一半,不幸的是这没有给出图例。请注意 .hvplot() 内置参数 datashade=True

df.reset_index().melt(id_vars='datetime').hvplot.line(
    x='datetime', 
    y='value', 
    by='variable', 
    datashade=True, 
    dynamic=False,
)