Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
df031_Stats.py File Reference

Namespaces

namespace  df031_Stats
 

Detailed Description

View in nbviewer Open in SWAN Use the Stats action to extract the statistics of a column.

Extract the statistics relative to RDataFrame columns and store them in TStatistic instances.

import ROOT
# Create a data frame and add two columns: one for the values and one for the weight.
r = ROOT.RDataFrame(256);
rr = r.Define("v", "rdfentry_")\
.Define("w", "return 1./(v+1)")
# Now extract the statistics, weighted, unweighted
stats_iu = rr.Stats("v")
stats_iw = rr.Stats("v", "w")
# Now print them: they are all identical of course!
stats_iu.Print()
stats_iw.Print()
ROOT's RDataFrame offers a high level interface for analyses of data stored in TTrees,...
Date
April 2019
Author
Danilo Piparo (CERN)

Definition in file df031_Stats.py.