mode property

List<double> get mode

Finds the mode(s) of the doubles in the iterable.

Returns a list of doubles that appear most frequently.

Implementation

List<double> get mode => convertToList<double>(NumbersHelper.mode(toList()));