Create a QQPlot. dataRange must be an input range with elements implicitly convertible to doubles. quantileFunction must be a callable (function pointer, delegate, functor, etc.) mapping any number between 0 and 1 to its quantile.
auto norms = randArray!rNorm(100, 0, 1); auto theoretical = paramFunctor!invNormalCDF(0, 1); auto fig = new Figure( QQPlot(norms, theoretical) ); fig.showAsMain();
See Implementation
Create a QQPlot. dataRange must be an input range with elements implicitly convertible to doubles. quantileFunction must be a callable (function pointer, delegate, functor, etc.) mapping any number between 0 and 1 to its quantile.