Changeset 4850 for trunk/GSASIIdataGUI.py
- Timestamp:
- Mar 11, 2021 11:32:08 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIdataGUI.py
r4847 r4850 7211 7211 ' Data residual wR: %.3f%% on %d observations'%(data[0]['wR'],data[0]['Nobs']))) 7212 7212 if kind == 'PWDR': 7213 DBW = ma.getdata(data[0]['Durbin-Watson']) 7213 try: #old gpx file 7214 DBW = ma.getdata(data[0]['Durbin-Watson']) 7215 except KeyError: 7216 DBW = 1.0 7214 7217 mainSizer.Add(wx.StaticText(G2frame.dataWindow,label=' Durbin-Watson statistic: %.3f'%DBW)) 7215 7218 for value in data[0]:
Note: See TracChangeset
for help on using the changeset viewer.