C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
BinomialDistribution.cs
Go to the documentation of this file.
1using System.Runtime.Serialization;
3
5{
8 {
11 [DataMember(Order = 20)]
12 [GreaterThan(0, canEqual: true)]
13 public int n { 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 Binomial Discrete Distribution.
double p
In a Binomial distribution, p is a real number between zero and one (inclusive) that represents the p...
int n
In a Binomial distribution, n an integer greater than or equal to zero representing the total number ...
Represents any distribution that is discrete. With a discrete probability distribution,...