Class CaseStatistics
- java.lang.Object
-
- org.processmining.plugins.stochasticpetrinet.analyzer.CaseStatistics
-
public class CaseStatistics extends java.lang.ObjectCase statistics for an individual case in a log. Stores probabilistic information about a case that can be created during replay in a probabilistic model (e.g.StochasticNet).- Author:
- Andreas Rogge-Solti
- See Also:
StochasticManifestCollector
-
-
Field Summary
Fields Modifier and Type Field Description static doubleDEFAULT_OUTLIER_RATEthe least probable 1 percent is considered as outliers per default
-
Constructor Summary
Constructors Constructor Description CaseStatistics(long caseId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddReplayStep(ReplayStep step)java.lang.DoublegetCaseDuration()longgetCaseId()java.util.List<java.lang.Double>getChoices()java.lang.DoublegetLogLikelihood()java.util.List<ReplayStep>getReplaySteps()voidmakeChoice(java.lang.Double probability)voidsetCaseDuration(java.lang.Double caseDuration)voidsetLogLikelihood(java.lang.Double logLikelihood)java.lang.StringtoString()java.lang.StringtoString(java.lang.String separator)
-
-
-
Field Detail
-
DEFAULT_OUTLIER_RATE
public static final double DEFAULT_OUTLIER_RATE
the least probable 1 percent is considered as outliers per default- See Also:
- Constant Field Values
-
-
Method Detail
-
addReplayStep
public void addReplayStep(ReplayStep step)
-
makeChoice
public void makeChoice(java.lang.Double probability)
-
getLogLikelihood
public java.lang.Double getLogLikelihood()
-
setLogLikelihood
public void setLogLikelihood(java.lang.Double logLikelihood)
-
getCaseDuration
public java.lang.Double getCaseDuration()
-
setCaseDuration
public void setCaseDuration(java.lang.Double caseDuration)
-
getReplaySteps
public java.util.List<ReplayStep> getReplaySteps()
-
getCaseId
public long getCaseId()
-
getChoices
public java.util.List<java.lang.Double> getChoices()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
toString
public java.lang.String toString(java.lang.String separator)
-
-