C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
NegativeBinomialDistribution.cs
Go to the documentation of this file.
1using System.Runtime.Serialization;
3
5{
8 {
11 [DataMember(Order = 20)]
12 [GreaterThan(0)]
13 public double r { get; set; }
14
17 [DataMember(Order = 21)]
18 [GreaterThan(0, canEqual: true)]
19 [LessThan(1, canEqual: true)]
20 public double p { get; set; }
21 }
22}
Abstract representation of a distribution, used for parametric loss sets.
Describes a NegativeBinomial Discrete Distribution.
double r
In a Negative Binomial distribution, r is a real number greater than zero representing the total numb...
double p
In a Negative Binomial distribution, p is a real number between zero and one (inclusive) that represe...
Represents any distribution that is discrete. With a discrete probability distribution,...