How to make a 3d line in holoviews library?

I have two sets of 3d trajectory data that I need to plot. The first trajectory needs to be as a 3d scatter plot - which can be done using the Scatter3D functionality. The second trajectory needs to be a continuous line. Despite searching on the documentation page and the web I've not been able to find it.

Could someone please let me know if it is possible at all ?

My first SO question here , sorry in advance for not sticking to convention...


The latest version of the HoloViews library has the 3D line functionality - the Path3D function.

As shown in their docs example:

line = np.random.randn(500, 3).cumsum(axis=0)
path = hv.Path3D(line)

path