Skip to content

Commit 95ee354

Browse files
committed
more tweaks of extinction check plot
1 parent 6c2ee21 commit 95ee354

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

GSASII/GSASIIdataGUI.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8288,9 +8288,9 @@ def OnPlotFoFcVsFc():
82888288
Fc = np.sqrt(np.array([xy[iFc+Super] for xy in refList if test(xy)]))
82898289
Sig = np.array([xy[iSig+Super] for xy in refList if test(xy)])/wtFctr #sig(fo^2)/wtFactor (1/GOF)
82908290
XE = [[xy[iFc+Super],xy[iExt+Super]] for xy in refList if test(xy)]
8291-
XE = np.array([[np.sqrt(xe[0]),1./xe[1]] for xe in XE]).T
8292-
G2plt.PlotXY(G2frame,[[Fc,2.*Fo*(Fo-Fc)/Sig],],XY2=[XE,],labelX='|Fc|',labelY=GkDelta+'F/sig, 1/ExtC',newPlot=False,
8293-
Title='Extinction check',lines=False,points2=True,names=['|Fo|-|Fc|',],names2=['1/ExtC',])
8291+
XE = np.array([[np.sqrt(xe[0]),1./xe[1]-1.] for xe in XE]).T
8292+
G2plt.PlotXY(G2frame,[[Fc,2.*Fo*(Fo-Fc)/Sig],],XY2=[XE,],labelX='Fc',labelY=GkDelta+'F/sig, 1/ExtC-1',newPlot=False,
8293+
Title='Extinction check',lines=False,points2=True,names=[GkDelta+'F/sig',],names2=['1/ExtC-1',])
82948294

82958295
G2plt.PlotDeltSig(G2frame,kind)
82968296
if kind in ['HKLF',]:

0 commit comments

Comments
 (0)