C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
ConditionalDistributionMetrics.cs
Go to the documentation of this file.
1using System;
2using System.Runtime.Serialization;
4
5namespace AnalyzeRe.Metrics
6{
12 {
14 [DataMember(Order = 2)]
15 [PropertyAlias(new[] { "VaR", "CoVaR" })]
16 public double min { get; set; } = Double.NaN;
17
19 [DataMember(Order = 3)]
20 [PropertyAlias(new[] { "TVaR", "CoTVaR" })]
21 public double mean { get; set; } = Double.NaN;
22
25 [DataMember(Order = 4)]
26 public double covariance { get; set; } = Double.NaN;
27
29 [DataMember(Order = 5)]
30 public double correlation { get; set; } = Double.NaN;
31 }
32}
Base class used by all types and resources.
Definition APIType.cs:8
Specifies one or more aliases to be used as synonyms for the property's name.
The metrics computed from a distribution filtered by some conditions. For example,...
double covariance
The covariance is a measure of the joint variability between the two distributions used to produce th...
double mean
The contribution to the mean value of the primary distribution.
double correlation
The correlation between the two distributions.
double min
The contribution to the minimum value in the primary distribution.