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

outdated

Statistics package for easy and efficient data manipulation with many built-in mathematical functions and units.

statistics #

pub package Null Safety Codecov CI GitHub Tag New Commits Last Commits Pull Requests Code size License

Statistics package for easy and efficient data manipulation with many built-in mathematical functions and units.

Usage #

A simple usage example:

import 'package:statistics/statistics.dart';

void main() {
  var ns = [10, 20.0, 30];
  print('ns: $ns');

  var mean = ns.mean;
  print('mean: $mean');

  var sdv = ns.standardDeviation;
  print('sdv: $sdv');

  var squares = ns.square;
  print('squares: $squares');
}

OUTPUT:

ns: [10, 20.0, 30]
mean: 20.0
sdv: 8.16496580927726
squares: [100.0, 400.0, 900.0]

Source #

The official source code is hosted @ GitHub:

Features and bugs #

Please file feature requests and bugs at the issue tracker.

Contribution #

Any help from the open-source community is always welcome and needed:

  • Found an issue?
    • Please fill a bug report with details.
  • Wish a feature?
    • Open a feature request with use cases.
  • Are you using and liking the project?
    • Promote the project: create an article, do a post or make a donation.
  • Are you a developer?
    • Fix a bug and send a pull request.
    • Implement a new feature.
    • Improve the Unit Tests.
  • Have you already helped in any way?
    • Many thanks from me, the contributors and everybody that uses this project!

If you donate 1 hour of your time, you can contribute a lot, because others will do the same, just be part and start with your 1 hour.

Author #

Graciliano M. Passos: gmpassos@GitHub.

License #

Apache License - Version 2.0

23
likes
0
pub points
88%
popularity

Publisher

unverified uploader

Statistics package for easy and efficient data manipulation with many built-in mathematical functions and units.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

collection, intl

More

Packages that depend on statistics