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.
2.1.0 #
- Export
LightStats
. - Require at least Dart 3.0
2.0.0 #
- Require at least Dart 2.12
- Null safety
1.0.1 #
- Allow
package:json_annotation
v4.x
.
1.0.0 #
- Added
LightStats
class and corresponding extension.- Unlike
Stats
, creatingLightStats
does not create and sort aList
with the entire source contents. It is "cheaper" to use, especially with large inputs.
- Unlike
Stats
- Now has a type argument
<T extends num>
. - implements
LightStats
. - Added
fromSortedList
factory. standardError
is now an on-demand calculated property instead of a field.- Renamed
mean
toaverage
.
- Now has a type argument
- Added
Iterable<num>
extensions:lightStats
,stats
,min
,max
,sum
andaverage
. - Require Dart SDK
>=2.7.0 <3.0.0
.
0.2.0+3 #
- Support latest
package:json_annotation
.
0.2.0+2 #
- Support latest
package:json_annotation
.
0.2.0+1 #
- Fix readme.
0.2.0 #
- Initial release.