C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
SensitivityAnalysis.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2using System.Collections.Specialized;
3using System.Runtime.Serialization;
5
7{
10 {
13 [DataMember(Order = 1)]
15 public List<LayerSensitivity> sensitivities { get; set; }
16
19 {
21 [DataMember(Order = 1)]
23 public string ref_id { get; set; }
24
26 [DataMember(Order = 2)]
28 public double min { get; set; }
29
31 [DataMember(Order = 3)]
33 public double max { get; set; }
34
36 [DataMember(Order = 4)]
38 public double mean { get; set; }
39
41 [DataMember(Order = 5)]
43 public double normalized_interquartile_range { get; set; }
44
46 [DataMember(Order = 6)]
48 public double normalized_standard_deviation { get; set; }
49
52 [DataMember(Order = 7)]
54 public OrderedDictionary hist { get; set; }
55 }
56 }
57}
Base class used by all types and resources.
Definition APIType.cs:8
Specifies that a property is generated by the server and should not be specified on the client side d...
double mean
Average layer participation between all candidates.
double normalized_standard_deviation
Normalized standard deviation of a layer participation.
OrderedDictionary hist
Normalized 20 bins histogram of the layer possible participation. Each bin is for a 5% range (0-0....
double normalized_interquartile_range
Normalized interquartile range of a layer participation.
Sensitivity analysis for the optimization view.
List< LayerSensitivity > sensitivities
Sensitivity analysis contains a list of sensitivity properties for each layer in the optimization vie...