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.

example/statistics_example.dart

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');
}
26
likes
0
points
4.56k
downloads

Publisher

unverified uploader

Weekly Downloads

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