Ticket #156 (closed defect: fixed)

Opened 2 months ago

Last modified 2 months ago

No description of the variables on the graph of importance factors from the quadratic cumul

Reported by: anne.dutfoy@edf.fr Assigned to: lapointe@phimeca.com
Priority: unspecified Milestone: not defined
Component: general Version: 0.12.0
Keywords: description variables on importance graph Cc:

Description

The description of the variables does not appear on the graph of importance factors from the quadratic cumul. There is only : " : 7.1%" instead of, for example : "E : 7.1%" .

Attachments

bugQuadraticCumul.py (2.8 kB) - added by anne.dutfoy@edf.fr on 10/23/08 15:58:03.

Change History

10/23/08 15:58:03 changed by anne.dutfoy@edf.fr

  • attachment bugQuadraticCumul.py added.

10/23/08 22:16:19 changed by regis.lebrun@eads.net

  • status changed from new to closed.
  • resolution set to fixed.

The method getImportanceFactors() returns a NumericalPoint instead of a NumericalPointWithDescription. As the first line of the drawImportanceFactors() method is:

	// To ensure that the importance factors are up to date
	importanceFactors_ = getImportanceFactors();

the NumericalPointWithDescription importanceFactors_ is filled by a NumericalPoint with no description. I fixed the signature of getImportanceFactors() and I also removed the affectation as it is not mandatory.

Régis