In [1]:
import ROOTaaS.iPyROOT
ROOT = ROOTaaS.iPyROOT.ROOT
h = ROOT.TH1F("h1","IPython histogram", 100, 0, 10)
h.FillRandom("gaus", 10000)

In [2]:
h.Draw()


Out[2]:

In [ ]: