stats 2.1.0 stats: ^2.1.0 copied to clipboard
Calculate common statistical values for a set of numbers: max, min, mean, median, standard deviation, and standard error.
import 'dart:convert';
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(const JsonEncoder.withIndent(' ').convert(stats.withPrecision(3)));
// {
// "count": 8,
// "average": 4.5,
// "min": 1,
// "max": 8,
// "median": 4.5,
// "standardDeviation": 2.29
// }
}