TYoshimura.DoubleDouble.Statistic 1.3.2

dotnet add package TYoshimura.DoubleDouble.Statistic --version 1.3.2
NuGet\Install-Package TYoshimura.DoubleDouble.Statistic -Version 1.3.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TYoshimura.DoubleDouble.Statistic" Version="1.3.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TYoshimura.DoubleDouble.Statistic --version 1.3.2
#r "nuget: TYoshimura.DoubleDouble.Statistic, 1.3.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install TYoshimura.DoubleDouble.Statistic as a Cake Addin
#addin nuget:?package=TYoshimura.DoubleDouble.Statistic&version=1.3.2

// Install TYoshimura.DoubleDouble.Statistic as a Cake Tool
#tool nuget:?package=TYoshimura.DoubleDouble.Statistic&version=1.3.2

DoubleDoubleStatistic

Double-Double Statistic Implements

Requirement

.NET 8.0
DoubleDouble
DoubleDoubleComplex

Install

Download DLL
Download Nuget

Implemented Distributions

Continuous

category distribution PDF CDF quantile statistic note
stable delta
holtsmark
landau
levy
map-airy
normal
sas point5
linearity cosine
davis CDF and Quantile take longer to calculate.
frechet
gumbel
johnson sb
johnson su
laplace
logistic
skew normal Quantile take longer to calculate.
uniform
u quadratic
weibull
scalable birnbaum saunders
exponential
folded normal
gamma
gompertz
half normal Quantile take longer to calculate.
hyperbolic secant
inverse gauss Quantile take longer to calculate.
log logistic
lomax
maxwell
pareto
rayleigh
voigt CDF and Quantile take longer to calculate.
wigner semicircle
continuous alpha
arcsine
argus
benktander Quantile take longer to calculate.
beta
beta prime
bradford
burr
cauchy
chi
chi square
dagum
fisher z
fisk
inverse gamma
inverse chi
inverse chi sq
irwin hall n ≤ 128
kumaraswamy
log normal
nakagami
noncentral chi sq Accuracy decreases when non-centricity is large.
noncentral f Accuracy decreases when non-centricity is large.
noncentral t Accuracy decreases when non-centricity is large.
power
reciprocal
rice CDF and Quantile take longer to calculate.
snedecor f
student t
triangular

Discrete

category distribution PMF statistic note
discrete bernoulli
binary
binomial
categorical
discrete uniform
gausskuzmin
geometric
hyper geometric
logarithmic
negative binomial
poisson
skellam
yule simon
zipf

Usage

NormalDistribution dist = new(mu: 1, sigma: 3);

// PDF
for (ddouble x = -4; x <= 4; x += 0.125) {
    ddouble pdf = dist.PDF(x);

    Console.WriteLine($"pdf({x})={pdf}");
}

// CDF
for (ddouble x = -4; x <= 4; x += 0.125) {
    ddouble ccdf = dist.CDF(x, Interval.Upper);

    Console.WriteLine($"ccdf({x})={ccdf}");
}

// Quantile
for (int i = 0; i <= 10; i++) {
    ddouble p = (ddouble)i / 10;
    ddouble x = dist.Quantile(p, Interval.Upper);

    Console.WriteLine($"cquantile({p})={x}");
}

// Statistic
Console.WriteLine($"Support={dist.Support}");
Console.WriteLine($"Mu={dist.Mu}");
Console.WriteLine($"Sigma={dist.Sigma}");
Console.WriteLine($"Mean={dist.Mean}");
Console.WriteLine($"Median={dist.Median}");
Console.WriteLine($"Mode={dist.Mode}");
Console.WriteLine($"Variance={dist.Variance}");
Console.WriteLine($"Skewness={dist.Skewness}");
Console.WriteLine($"Kurtosis={dist.Kurtosis}");
Console.WriteLine($"Entropy={dist.Entropy}");

// Random Sampling
Random random = new(1234);
double[] xs = dist.Sample(random, 100000).ToArray();

Typical parameter symbols

category symbol note
support parameter k
a, b uniform
a, b, c triangular
shape parameter alpha
alpha, beta beta, beta prime
gamma, delta johnson sb, su
eta gompertz
nu chi, chisq, student t
n irwin hall
n, m fisher z, snedecor f
c stable distributions
location parameter mu
scale parameter sigma error-related distributions
theta time-related distributions
s, r otherwise
non-centricity parameter lambda
mu non-central student t

To Be Updated

Not Implemented Distributions

(N/A)

Not Implemented Functions

  • Fitting
  • Statistic Test

Licence

MIT

Author

T.Yoshimura

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.3.2 24 5/10/2024
1.3.1 38 5/9/2024
1.3.0 38 5/9/2024
1.2.0 82 5/5/2024
1.1.1 90 5/4/2024
1.1.0 61 5/3/2024
1.0.9 40 5/3/2024
1.0.8 41 5/3/2024
1.0.7 61 5/1/2024
1.0.6 80 4/30/2024
1.0.5 75 4/29/2024
1.0.4 73 4/27/2024
1.0.3 79 4/26/2024
1.0.2 85 4/25/2024
1.0.1 84 4/24/2024
1.0.0 80 4/24/2024

add: discrete dists