Metadata-Version: 2.4
Name: SaduStatistics
Version: 0.0.1
Summary: Subset Package of Basic-Level Statistics.
Author-email: SaduPostMagazine <sadupostrivista@gmail.com>
License-Expression: MIT
Project-URL: docker, https://hub.docker.com/r/sadupostmagazine/sadu-post-quantum-oscillators.py
Project-URL: magazine, https://sadumagazine.byethost31.com/SSS3.html?i=1
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

#HOW TO USE(SYNTAX):
import SaduStatistics as SS
from SaduStatistics import CentralTendency
from SaduStatistics import VarianceMeasures
from SaduStatistics import InferentialStatistics

SS.CentralTendency.MEAN(***ARGUMENTS***)
SS.CentralTendency.MODE(***ARGUMENTS***)
SS.CentralTendency.MEDIAN(***ARGUMENTS***)

SS.VarianceMeasures.RANGE(***ARGUMENTS***)
SS.VarianceMeasures.VARIANCE(***ARGUMENTS***)
SS.VarianceMeasures.StandardDeviation(***ARGUMENTS***)
SS.VarianceMeasures.InterQuartile(***ARGUMENTS***)

SS.InferentialStatistics.HypothesisTesting(***ARGUMENTS***)
SS.InferentialStatistics.ConfidenceInterval(***ARGUMENTS***)
SS.InferentialStatistics.LinearRegressionModel(***ARGUMENTS***)
SS.InferentialStatistics.MatplotlibHistogram(***ARGUMENTS***)
SS.InferentialStatistics.HistPlot(***ARGUMENTS***)
SS.InferentialStatistics.DOT(***ARGUMENTS***)


#SECOND INSTALL REQUIREMENTS(LIBRARIES):
1. matplotlib
2. math
3. scipy
4. sklearn
5. numpy


***Statistical functions on this package version are classified into three sections: 1- CentralTendency, 2-VarianceMeasures and 3-InferentialStatistics; alongside histogram plot function. Example of usage: SaduStatistics.CentralTendency.Mean(***arguments***), OR SaduStatistics.VarianceMeasures.InterQuartile(***arguments***) OR SaduStatistics.InferentialStatistics.HypothesisTesting(***arguments***)
