Changeset e742b63c in sasview


Ignore:
Timestamp:
Oct 26, 2017 3:50:00 AM (6 years ago)
Author:
Adam Washington <adam.washington@…>
Branches:
ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
Children:
5fe52594
Parents:
481c4f4
Message:

Fix σ bug

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Perspectives/PrInversion/dmax.py

    r481c4f4 re742b63c  
    138138 
    139139        plotter = unicode(self.model.item(W.VARIABLE).text()) 
    140         if plotter == u"1-σ positive fraction": 
    141             ys = pos_err 
    142         elif plotter == u"χ²/dof": 
     140        if plotter == u"χ²/dof": 
    143141            ys = chi2 
    144142        elif plotter == u"I(Q=0)": 
     
    152150        elif plotter == u"Positive Fraction": 
    153151            ys = pos 
     152        else: 
     153            ys = pos_err 
    154154 
    155155        self.plot.plot(data=Data1D(xs, ys), marker="-") 
Note: See TracChangeset for help on using the changeset viewer.