TYoshimura.DoubleDouble.Statistic 1.0.4

There is a newer version of this package available.
See the version list below for details.
dotnet add package TYoshimura.DoubleDouble.Statistic --version 1.0.4
NuGet\Install-Package TYoshimura.DoubleDouble.Statistic -Version 1.0.4
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.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TYoshimura.DoubleDouble.Statistic --version 1.0.4
#r "nuget: TYoshimura.DoubleDouble.Statistic, 1.0.4"
#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.0.4

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

DoubleDoubleStatistic

Double-Double Statistic Implements

Requirement

.NET 8.0
DoubleDouble
DoubleDoubleComplex

Install

Download DLL
Download Nuget

Implemented Distributions

category distribution PDF CDF quantile statistic note
continuous alpha
arcsine
argus
beta
beta prime
birnbaum saunders
bradford
burr
cauchy
chi
chi square
cosine
delta N/A
exponential
gamma
gumbel
gompertz
fisher z
fisk
frechet
half normal
holtsmark
hyperbolic secant
inverse gamma
inverse gauss
inverse chi
inverse chi sq
irwin hall
johnson sb
johnson su
kumaraswamy
laplace
landau
levy
log logistic
log normal
logistic
lomax
map-airy
maxwell
nakagami
normal
pareto
power
rayleigh
reciprocal
rice
sas point5
skew normal
snedecor f
student t
triangular
uniform
u quadratic
voigt
weibull
wigner semicircle

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}");

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

To Be Updated

Not Implemented Distributions

  • benktander
  • dagum
  • davis
  • non central chi sq
  • non central f
  • non central t
  • suzuki

Not Implemented Functions

  • Random Generation
  • Fitting
  • Discrete Distributions
  • 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 41 5/10/2024
1.3.1 38 5/9/2024
1.3.0 39 5/9/2024
1.2.0 83 5/5/2024
1.1.1 92 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: argus, rice