Replies: 1 comment
-
It's a good request I just don't know what the API would be so for now a slightly simpler way to achieve the same thing: plot = df.hvplot('month', 'air', by=['label', 'hour'], legend='right').groupby('label')
for p, cmap in zip(plot, ('Reds', 'Greens', 'Blues')):
p.opts('Curve', color=hv.Palette(cmap))
plot |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The first image is very noisy, the second image is much more understandable (although the legend labels are missing the names)

Beta Was this translation helpful? Give feedback.
All reactions