I am new to plotly. I have this yellow curve on X-Y plane. I picked 3 points on the curve denoted by A, B, C. Red, green and pink lines show their simulation on 3 paths along Z axis. Is it possible to create a 3-D plot like below? I can massage the data in any way required. I will really appreciate any tips.
Thank you very much for the pointers. I donβt need the arrow head or the texts, those were just for explanation.
My data looks like below:
Data for yellow curve is a dict with key=int and value=float
{
1: 0.02,
2: 0.05, # Point A
3: 0.08,
4: 0.03, # Point B
5: 0.09,
6: 0.11 # Point C
}
Letβs say, I pick those three points on the curve i.e. A, B and C and simulate 3 paths (red, green, pink) from each points. I take 4 time steps (kinks on the red, green, pink lines) along Z-axis. I am storing data for each time step like below:
Data is a dictionary of key=time-steps, value=3x3 numpy array (path x points on curve).
Thanks for sharing the data, but unfortunately I still does not fully understand your data.
Assuming yellow curve data dict as x (keys) and y(values) axis, like @AIMPED has questioned
and the yellow curve βzβ axis is a list of zeros.
I end up create this 3d graph by my interpretation from your previous post like displayed below.