ROOT
Version v6.32
master
v6.34
v6.30
v6.28
v6.26
v6.24
v6.22
v6.20
v6.18
v6.16
v6.14
v6.12
v6.10
v6.08
v6.06
Reference Guide
►
ROOT
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
tStudent.py
Go to the documentation of this file.
1
## \file
2
## \ingroup tutorial_math
3
## \notebook
4
## Example macro describing the student t distribution
5
##
6
## ~~~{.cpp}
7
## root[0]: .x tStudent.C
8
## ~~~
9
##
10
## It draws the pdf, the cdf and then 10 quantiles of the t Student distribution
11
##
12
## based on Magdalena Slawinska's tStudent.C
13
##
14
## \macro_image
15
## \macro_code
16
##
17
## \author Juan Fernando Jaramillo Botero
18
19
from
ROOT
import
TH1D, TF1, TCanvas, kRed, kBlue
20
import
ROOT
21
22
23
# This is the way to force load of MathMore in Cling
24
ROOT.Math.MathMoreLibrary.Load
()
25
26
# Create the pdf and the cumulative distributions
27
n = 100
28
a = -5.
29
b = 5.
30
pdf =
TF1
(
"pdf"
,
"ROOT::Math::tdistribution_pdf(x,3.0)"
, a, b)
31
cum =
TF1
(
"cum"
,
"ROOT::Math::tdistribution_cdf(x,3.0)"
, a, b)
32
33
# Create the histogram and fill it with the quantiles
34
quant =
TH1D
(
"quant"
,
""
, 9, 0, 0.9)
35
36
for
i
in
range
(1, 10):
37
quant.Fill
((i-0.5)/10.0,
ROOT.Math.tdistribution_quantile
(0.1 * i,
38
3.0))
39
40
# For each quantile fill with the pdf
41
xx = []
42
xx.append
(-1.5)
43
for
i
in
range
(1, 9):
44
xx.append
(
quant.GetBinContent
(i))
45
xx.append
(1.5)
46
47
pdfq = []
48
for
i
in
range
(9):
49
nbin =
int
(n * (xx[i+1] - xx[i]) / 3.0 + 1.0)
50
name =
"pdf%d"
% i
51
pdfq.append
(
TH1D
(name,
""
, nbin, xx[i], xx[i+1]))
52
for
j
in
range
(1, nbin):
53
x = j * (xx[i+1] - xx[i]) / nbin + xx[i]
54
pdfq[i].SetBinContent(j,
ROOT.Math.tdistribution_pdf
(x, 3))
55
56
# Create the Canvas and divide in four draws, for every draw set the line width
57
# the title, and the line color.
58
Canvas =
TCanvas
(
"DistCanvas"
,
"Student Distribution graphs"
, 10, 10, 800, 700)
59
pdf.SetTitle
(
"Student t distribution function"
)
60
cum.SetTitle
(
"Cumulative for Student t"
)
61
quant.SetTitle
(
"10-quantiles for Student t"
)
62
Canvas.Divide
(2, 2)
63
Canvas.cd
(1)
64
pdf.SetLineWidth
(2)
65
pdf.DrawCopy
()
66
Canvas.cd
(2)
67
cum.SetLineWidth
(2)
68
cum.SetLineColor
(kRed)
69
cum.Draw
()
70
Canvas.cd
(3)
71
quant.Draw
()
72
quant.SetLineWidth
(2)
73
quant.SetLineColor
(kBlue)
74
quant.SetStats
(0)
75
Canvas.cd
(4)
76
pdfq[0].SetTitle(
"Student t & its quantiles"
)
77
pdf.SetTitle
(
""
)
78
pdf.Draw
()
79
pdfq[0].SetTitle(
"Student t & its quantiles"
)
80
81
# Set the colors in every quantile.
82
i = 1
83
for
pd
in
pdfq[1:]:
84
pd.SetStats
(0)
85
i += 1
86
pd.SetFillColor
(i)
87
pd.Draw
(
"same"
)
88
Canvas.Modified
()
TRangeDynCast
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Definition
TCollection.h:358
ROOT::Detail::TRangeCast
Definition
TCollection.h:311
TCanvas
The Canvas class.
Definition
TCanvas.h:23
TF1
1-Dim function class
Definition
TF1.h:233
TH1D
1-D histogram with a double per channel (see TH1 documentation)
Definition
TH1.h:669
int
tutorials
math
tStudent.py
ROOT v6-32 - Reference Guide Generated on Thu Apr 3 2025 12:08:03 (GVA Time) using Doxygen 1.10.0