ScaleSequentialQuantile<Y> constructor

ScaleSequentialQuantile<Y>({
  1. List<num?>? domain,
  2. required Y interpolator(
    1. num
    ),
})

Returns a new sequential scale with a p-quantile transform, analogous to a ScaleQuantile.

Implementation

ScaleSequentialQuantile({List<num?>? domain, required this.interpolator}) {
  if (domain != null) this.domain = domain;
}