You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have noticed some irregularities in the API for dstats.distrib and dstats.random.
Most of the inverse CDF functions are f(p, param), but some are f(param, p). These are the two that jump out as being opposite of the others: invChiSquareCDFR, invFisherCDFR
The names in dstats.random do not match the names in dstats.distrib in some cases. These three jump out: rLogNorm, rNorm, rStudentT
Excluding the first time (which obviously should be different), the type signature of invBinomialCDF does not match that of binomialCDF. Contrasting invBinomialCDF and binomialCDF, n is uint in one and ulong in another.
The text was updated successfully, but these errors were encountered:
I have noticed some irregularities in the API for dstats.distrib and dstats.random.
Most of the inverse CDF functions are f(p, param), but some are f(param, p). These are the two that jump out as being opposite of the others: invChiSquareCDFR, invFisherCDFR
The names in dstats.random do not match the names in dstats.distrib in some cases. These three jump out: rLogNorm, rNorm, rStudentT
Excluding the first time (which obviously should be different), the type signature of
invBinomialCDF
does not match that ofbinomialCDF
. Contrasting invBinomialCDF and binomialCDF,n
isuint
in one andulong
in another.The text was updated successfully, but these errors were encountered: