-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Interpolation for 3d data in plotly #423
Comments
You can set the line properties to spline in the trace: Example:
This is how it renders: https://plot.ly/~tarzzz/1874/ |
@tarzzz : Thanks for the reply. But the problem is the line.shape property is present in only 2d plots. I need a similar one for 3d line plots. In 3d I used Scatter3d function instead of just Scatter and the line object doesn't have shape object in it. |
See:
In this issue: plotly/plotly.js#130 (comment) |
I need a way to create a smooth representation of 3d curves in plotly. Currently I have a set of points when I plot them I get step-wise points in plotly. Is there a way to avoid the step-wise variance in the plots and get a smooth curve?
I have thought of interpolation but it is smoothing out the curve completely by avoiding all the outliers.
Attaching the images.
The blue line in this plot needs to be smoothed. It has lot of outliers which create that step effect when I plot that data.
Here is the output of interpolation:
Before Interpolation.
After Interpolation.
Any help on this would be great. Thanks.
The text was updated successfully, but these errors were encountered: