Logo ROOT   6.16/01
Reference Guide
df008_createDataSetFromScratch.C File Reference

Detailed Description

View in nbviewer Open in SWAN This tutorial shows how to create a dataset from scratch with RDataFrame

{
// We create an empty data frame of 100 entries
ROOT::RDataFrame tdf(100);
// We now fill it with random numbers
auto tdf_1 = tdf.Define("rnd", []() { return gRandom->Gaus(); });
// And we write out the dataset on disk
tdf_1.Snapshot("randomNumbers", "df008_createDataSetFromScratch.root");
}
R__EXTERN TRandom * gRandom
Definition: TRandom.h:62
ROOT's RDataFrame offers a high level interface for analyses of data stored in TTrees,...
Definition: RDataFrame.hxx:41
virtual Double_t Gaus(Double_t mean=0, Double_t sigma=1)
Samples a random number from the standard Normal (Gaussian) Distribution with the given mean and sigm...
Definition: TRandom.cxx:256
virtual void SetSeed(ULong_t seed=0)
Set the random generator seed.
Definition: TRandom.cxx:589
Date
June 2017
Author
Danilo Piparo

Definition in file df008_createDataSetFromScratch.C.