Hello
I’m trying to display several datasets into one plot/window using jupyter notebook and trame but it’s instead displaying 3 separate windows. This is the code:
plot_1 = pv.PolyData(plot_1_points)
plot_1.plot(point_size=1, color='black', opacity=0.05)
plot_2 = pv.PolyData(plot_2_points)
plot_2.plot(point_size=10, color='blue', opacity=0.8)
plot_3 = pv.PolyData(plot_3_points)
plot_3.plot(point_size=5, color='red', opacity=0.8)
plotter.add_mesh(plot_1)
plotter.add_mesh(plot_2)
plotter.add_mesh(plot_3)
pv.set_jupyter_backend('server')
plotter.show()
How can all the data just appear in one plot?