Skip to content

ChartsLab/ChartsLab-Statistics

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

ChartsLab-Statistics

This Class will Define the Statistic layer in our Package or library That allowed you to identify Spreading of data and analyze it .

Installing

API Reference

Mean ()

  • It provide The Avarage of The Vector .
arre =[1,2,3]
s.Vector(arre);
s.Mean(); // it will generate : Mean = 2

Sum ()

  • It provide the Summation of the Vector .
arre =[1,2,3]
s.Vector(arre);
s.Sum();
//it will generate : Sum = 6

Median ()

  • It provide the Medain of The Vector .
arre =[1,2,3]
s.Vector(arre);
s.Medain();
//it will generate : Median = 2

Mode ()

  • It provide the Mode of The Vector .
arre =[1,2,3,3]
s.Vector(arre);
s.Mode();
// it will generate : Mode = 3

Variance ()

  • It provide the Variance of The Vector or the Spreading of data .
arre =[1,2,3,3]
s.Vector(arre);
s.Mode();
// it will generate : Varance = 0.6875 

StdDev () :

  • It provide the StdDev of The Vector .
arre =[1,2,3,3]
s.Vector(arre);
s.StDev();
// it will generate : StDev = 0.82915619758885 

LowerQuartile ()

  • It provide the LowerQuartile of The Vector .
arre =[1,2,3,4,4,5,6]
s.Vector(arre);
s.LowerQuartile();
// it will generate : LowerQuartile = 2 

UpperQuartile () :

  • It provide the UpperQuartile of The Vector .
arre =[1,2,3,4,4,5,6]
s.Vector(arre);
s.UpperQuartile();
// it will generate : UpperQuartile = 5

UpperWhisker () :

  • It provide the UpperQuartile of The Vector .
arre =[1,2,3,4,4,5,6]
s.Vector(arre);
s.UpperWhisker();
// it will generate : UpperWhisker = 9.5 

LoweWhisker () :

  • It provide the UpperQuartile of The Vector .
arre =[1,2,3,4,4,5,6]
s.Vector(arre);
s.LoweWhisker();
// it will generate : LoweWhisker = - 2.5

This Layer Is still in Work If you Need More Methods Plz Leave A comment