You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The subcoordinate_y feature added to HoloViews opens the door to the implementation of ridge / joy plots in hvPlot. I'm opening this issue to gauge the interest in this feature and discuss it.
Note to self. For a little while I got confused with what exactly a ridgeplot is, trying to adapt it to fit and replace subcoordinate_y. However, a ridgeplot most often is an overlay of kde plots, this is the output this API should offer.
importpandasaspdimportnumpyasnpimporthvplot.pandasdf=pd.DataFrame(np.random.random((1000, 4)), columns=list("ABCD"))
df.hvplot.ridge() # somewhat better version of `df.hvplot.kde(subcoordinate_y={'subcoordinate_scale': 2})`
The
subcoordinate_y
feature added to HoloViews opens the door to the implementation of ridge / joy plots in hvPlot. I'm opening this issue to gauge the interest in this feature and discuss it.HoloViews code (stolen from Demetris'!)
Python users can already create such plots using the usual plotting libraries, albeit usually by having to resort to low-level APIs:
I also found two packages implementing high-level APIs:
And a few other packages from other ecosystems:
(#1160 should be implemented first)
The text was updated successfully, but these errors were encountered: