Data in X-Y-Y with errors and plot in 3D
Source code name: "data_p2d_1.py"
Programming language: Python
Topic: Data arrays/P2D
DMelt Version 1. Last modified: 12/08/2015. License: Pro
https://datamelt.org/code/cache/data_p2d_1_6503.py
To run this script using the DMelt IDE, copy the above URL link to the menu [File]→[Read script from URL] of the DMelt IDE.



from jhplot  import * 

c1 = HPlot3D("Canvas")
c1.visible()
c1.setAutoRange()

p1=P2D("3D")
p1.add(1,2,3)
p1.add(2,1,3)
p1.add(3,2,0)
c1.draw(p1)


You see the box below because you did not login.