datalib 1.0.0 copy "datalib: ^1.0.0" to clipboard
datalib: ^1.0.0 copied to clipboard

A dart libary for data science and statistical calculations

Datalib is a dart package for data science and statistics calculations.

usage:

first of all We have to create a object from DataLib


DataLib datalib = new datalib();

//just like that

functions:


DataLib datalib = new datalib();
//cov
datalib.cov(xList:array1 ,yList:array2);
// this function calculates the covariation between two lists of we enter to parameters


//cor
datalib.cor(xList:array1 ,yList:array2);
//this function calculates the correlation between two lists of we enter to parameters


datalib.populationStandardDeviation(values:array);
//this function calculates the population Standard Deviation a list of we enter to parameters


datalib.sampleStandardDeviation(values:array);
//this function calculates the sample Standard Deviation a list of we enter to parameters


datalib.regressionAnalysis(xList:array1,yList:array2,estimate:estimate);
/*
This function creates the regression equation according to the lists you enter, and based on that equation, it creates an estimated value with the estimated value you give, returns as a list;
index 0 : a value
index 1 : b value
index 2 : estimate result
*/

datalib.arithmaticMean(values:list);
//this function calculates the arithmatic mean a list of we enter to parameter

dataLib.geometricMean(values:list);
//this function calculates the geometric mean a list of we enter to parameter

datalib.harmonicMean(values:list);
//this function calculates the harmonic mean a list of we enter to parameter


2
likes
90
pub points
0%
popularity

Publisher

unverified uploader

A dart libary for data science and statistical calculations

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on datalib