{
TF1* pdf =
new TF1(
"pdf",
"ROOT::Math::tdistribution_pdf(x,3.0)",
a,
b);
TF1* cum =
new TF1(
"cum",
"ROOT::Math::tdistribution_cdf(x,3.0)",
a,
b);
TH1D* quant =
new TH1D(
"quant",
"", 9, 0, 0.9);
for(int i=1; i < 10; i++)
double xx[10];
xx[0] = -1.5;
for(int i=1; i<9; i++)
xx[9] = 1.5;
for(int i=0; i < 9; i++) {
int nbin =
n * (xx[i+1]-xx[i])/3.0 + 1.0;
pdfq[i]=
new TH1D(
name,
"", nbin,xx[i],xx[i+1] );
for(int j=1; j<nbin; j++) {
double x= j*(xx[i+1]-xx[i])/nbin + xx[i];
}
}
TCanvas *Canvas =
new TCanvas(
"DistCanvas",
"Student Distribution graphs", 10, 10, 800, 700);
pdf->
SetTitle(
"Student t distribution function");
cum->
SetTitle(
"Cumulative for Student t");
quant->
SetTitle(
"10-quantiles for Student t");
pdfq[0]->
SetTitle(
"Student t & its quantiles");
pdfq[0]->
SetTitle(
"Student t & its quantiles");
for(int i=0; i < 9; i++) {
}
}
virtual void SetFillColor(Color_t fcolor)
Set the fill area color.
virtual void SetLineWidth(Width_t lwidth)
Set the line width.
virtual void SetLineColor(Color_t lcolor)
Set the line color.
TVirtualPad * cd(Int_t subpadnumber=0)
Set current canvas & pad.
virtual void SetTitle(const char *title="")
Set function title if title has the form "fffffff;xxxx;yyyy", it is assumed that the function title i...
virtual void Draw(Option_t *option="")
Draw this function with its current attributes.
virtual TF1 * DrawCopy(Option_t *option="") const
Draw a copy of this function with its current attributes.
1-D histogram with a double per channel (see TH1 documentation)}
virtual void SetTitle(const char *title)
See GetStatOverflows for more information.
virtual Int_t Fill(Double_t x)
Increment bin with abscissa X by 1.
virtual void SetBinContent(Int_t bin, Double_t content)
Set bin content see convention for numbering bins in TH1::GetBin In case the bin number is greater th...
virtual void Draw(Option_t *option="")
Draw this histogram with options.
virtual Double_t GetBinContent(Int_t bin) const
Return content of bin number bin.
virtual void SetStats(Bool_t stats=kTRUE)
Set statistics option on/off.
virtual void Divide(Int_t nx=1, Int_t ny=1, Float_t xmargin=0.01, Float_t ymargin=0.01, Int_t color=0)
Automatic pad generation by division.
void Modified(Bool_t flag=1)
double tdistribution_pdf(double x, double r, double x0=0)
Probability density function of Student's t-distribution.
double tdistribution_quantile(double z, double r)
Inverse ( ) of the cumulative distribution function of the lower tail of Student's t-distribution (td...