Loading [MathJax]/extensions/tex2jax.js
ROOT
Version v6.26
master
v6.34
v6.32
v6.30
v6.28
v6.24
v6.22
v6.20
v6.18
v6.16
v6.14
v6.12
v6.10
v6.08
v6.06
Reference Guide
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
df008_createDataSetFromScratch.py
Go to the documentation of this file.
1
## \file
2
## \ingroup tutorial_dataframe
3
## \notebook -nodraw
4
## Create data from scratch with RDataFrame.
5
##
6
## This tutorial shows how to create a dataset from scratch with RDataFrame
7
##
8
## \macro_code
9
##
10
## \date June 2017
11
## \author Danilo Piparo (CERN)
12
13
import
ROOT
14
15
# We create an empty data frame of 100 entries
16
df =
ROOT.RDataFrame
(100)
17
18
# We now fill it with random numbers
19
ROOT.gRandom.SetSeed(1)
20
df_1 = df.Define(
"rnd"
,
"gRandom->Gaus()"
)
21
22
# And we write out the dataset on disk
23
df_1.Snapshot(
"randomNumbers"
,
"df008_createDataSetFromScratch_py.root"
)
ROOT::RDataFrame
ROOT's RDataFrame offers a high level interface for analyses of data stored in TTree,...
Definition
RDataFrame.hxx:50
tutorials
dataframe
df008_createDataSetFromScratch.py
ROOT v6-26 - Reference Guide Generated on Mon Sep 11 2023 21:03:01 (GVA Time) using Doxygen 1.9.8