Class RiskItemStatistics
Namespace: Aspose.Tasks.RiskAnalysis
Assembly: Aspose.Tasks.dll (25.4.0)
Represents an item which stores statistical data for the task of the analyzed project.
public class RiskItemStatistics
Inheritance
Inherited Members
object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Properties
ExpectedValue
Gets the expected value of the risk item.
public DateTime ExpectedValue { get; }
Property Value
ItemType
Gets an instance of the Aspose.Tasks.RiskAnalysis.RiskItemType enumeration.
public RiskItemType ItemType { get; }
Property Value
Maximum
Gets the maximum value which was generated during Monte Carlo simulation.
public DateTime Maximum { get; }
Property Value
Minimum
Gets the minimum value which was generated during Monte Carlo simulation.
public DateTime Minimum { get; }
Property Value
StandardDeviation
Gets the standard deviation of the risk item.
public Duration StandardDeviation { get; }
Property Value
Methods
GetPercentile(int)
Gets a value below which a specified percentage of generated samples fall.
public DateTime GetPercentile(int percent)
Parameters
percent
int
the specified percent between 0 and 100.
Returns
a value below which a specified percentage of generated samples fall.
ToString()
Returns short string representation of a risk item. The exact details of the representation are unspecified and subject to change.
public override string ToString()
Returns
short string which represents RiskItem object.