Dear Users,
I am trying to draw a histogram from data obtained from two columns m1
and m2
in a RDF object df
. For this I run:
hist1 = df.Histo1D(("", "", 10, 0, 100),"m1")
hist2 = df.Histo1D(("", "", 10, 0, 100),"m2")
which generates the histograms for each column, but now I would like to “merge” both histograms into one, and I am unsure on how to do this. Would anyone know how to proceed in this case?
Any help would be appreciated!