InferenceResult¶
- class persalys.InferenceResult(*args)¶
Get the results of an inference analysis.
Notes
Structure created by the method run() of
InferenceAnalysis
, and obtained thanks to the method getResult().Methods
Accessor to the object's name.
Sequence of fitting test results accessor.
getFittingTestResultForVariable
(variableName)Get the fitting test result of a variable.
getName
()Accessor to the object's name.
hasName
()Test if the object is named.
setName
(name)Accessor to the object's name.
- __init__(*args)¶
- getClassName()¶
Accessor to the object’s name.
- Returns
- class_namestr
The object class name (object.__class__.__name__).
- getFittingTestResultCollection()¶
Sequence of fitting test results accessor.
- Returns
- resultssequence of
FittingTestResult
The fitting test results of all the variables
- resultssequence of
- getFittingTestResultForVariable(variableName)¶
Get the fitting test result of a variable.
- Parameters
- variablestr
Name of the variable
- Returns
- result
FittingTestResult
The fitting test result of the variable
- result
- getName()¶
Accessor to the object’s name.
- Returns
- namestr
The name of the object.
- hasName()¶
Test if the object is named.
- Returns
- hasNamebool
True if the name is not empty.
- setName(name)¶
Accessor to the object’s name.
- Parameters
- namestr
The name of the object.