stats 2.0.0 copy "stats: ^2.0.0" to clipboard
stats: ^2.0.0 copied to clipboard

outdated

Calculate common statistical values for a set of numbers: max, min, mean, median, standard deviation, and standard error.

CI Pub Package

import 'package:stats/stats.dart';

void main() {
  final input = [1, 2, 3, 4, 5, 6, 7, 8];
  print('Input: $input');
  final stats = Stats.fromData(input);
  print(stats.withPrecision(3));
  // {
  //  "count": 8,
  //  "average": 4.5,
  //  "min": 1,
  //  "max": 8,
  //  "median": 4.5,
  //  "standardDeviation": 2.29
  // }
}
30
likes
0
pub points
87%
popularity

Publisher

verified publisherj832.com

Calculate common statistical values for a set of numbers: max, min, mean, median, standard deviation, and standard error.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

json_annotation

More

Packages that depend on stats