 |
Histograms in 3 using surface and contour
Source code name: "histo3D_surface_contour.py"
Programming language: Python
Topic: Plots/3D
DMelt Version 1.5. Last modified: 05/18/2016. License: Pro
https://datamelt.org/code/cache/histo3D_surface_contour_4740.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 *
from java.awt import Color
from java.util import Random
c1=HPlotXYZ("test",600,400)
c1.setGTitle("3D function")
c1.visible()
c1.setTickDecimalAll(1)
hh=H2D("Histogram",20,-2,2,20,-2,2)
rand = Random()
# fill histogram
for i in range(10000):
hh.fill(rand.nextGaussian(),rand.nextGaussian())
c1.setContourColor3D()
c1.addAsSurface(hh)
c1.update()
You see the box below because you did not login.