C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
ParetoDistribution.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 shape { get; set; }
14
18 [DataMember(Order = 21)]
19 [GreaterThan(0)]
20 public double scale { get; set; }
21 }
22}
Abstract representation of a distribution, used for parametric loss sets.
Describes a Pareto Probability Distribution.
double scale
Determines the "scale" or statistical dispersion of the Pareto probability distribution....
double shape
Affects the shape of the Pareto probability distribution. Can be any real number greater than zero.
Represents any distribution that is continuous. With a continuous probability distribution,...