Currently I am using mpl_toolkits.mplot3d
with ~100k points. However, rotating the graph is very time-costly and zooming is impossible. Does anyone have suggestions on how to fix these problems?
Asked
Active
Viewed 358 times
1

Woody1193
- 7,252
- 5
- 40
- 90

mobiguneci
- 13
- 3
-
1The two solutions are (1) plot less points, since one wouldn't be able to perceive this large number of points anyways, (2) don't use matplotlib, other libraries like mayavi or pyqtgraph would probably be much faster. – ImportanceOfBeingErnest Nov 26 '18 at 16:12
-
More clear. Can't really add much in the way of content because the OP didn't upload any code but at least now it's obvious what he's asking. – Woody1193 Nov 26 '18 at 20:17
-
You can use plotly to plot 3d figure. Not sure after rendering into js, it will fit your purpose. – Jiadong Nov 27 '18 at 13:27