You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This would imply to remove the variance argument from the plot_consistency_test signature and retrieve it from the EvaluationResult argument the plot function has.
The evaluation function https://github.com/SCECcode/pycsep/blob/5f84ea97101de0439deb1e3f5c383874c7bb3801/csep/core/binomial_evaluations.py#L33 requires a variance parameter. However, this is not stored in the resulting
EvaluationResult. To plot this negative binomial consistency test, thevarianceparameter is required again, which impedes the EvaluationResult to be a standalone object without the function arguments that created it. I propose to change https://github.com/SCECcode/pycsep/blob/5f84ea97101de0439deb1e3f5c383874c7bb3801/csep/core/binomial_evaluations.py#L68 toThis would imply to remove the
varianceargument from theplot_consistency_testsignature and retrieve it from theEvaluationResultargument the plot function has.