Hi there,
Just wondering if is possible to draw a โBalls and Lines 3Dโ chart in plotly ?
thanks a lot
Hi there,
Just wondering if is possible to draw a โBalls and Lines 3Dโ chart in plotly ?
thanks a lot
I think it should be possible, you can just add to your plot the following depending if you want markers (balls?), lines over the x-axis or lines over the y-axis:
p1 %>% add_markers(size=3)
p1 %>% add_paths
p1 %>% add_lines
And you should be able to combine them.
I hope this works