Ignore:
Timestamp:
Mar 4, 2018 4:07:55 PM (6 years ago)
Author:
butler
Branches:
master, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, unittest-saveload
Children:
84ac3f1
Parents:
943e17a
Message:

Clarify use of chi2 in GUI and documentation

Changed Gui name and tooltip to reflect we are using reduced chi2 not
simply Chi
2/Npts. Also edited the documenataion to finish making that
clear and in the process cleaned up a few old (i.e. incorrect)
statements.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sasgui/perspectives/fitting/media/residuals_help.rst

    r99ded31 ra7c6f38  
    2727 
    2828$\chi^2$ is a statistical parameter that quantifies the differences between 
    29 an observed data set and an expected dataset (or 'theory'). 
    30  
    31 When showing the a model with the data, *SasView* displays this parameter 
    32 normalized to the number of data points, $N_\mathrm{pts}$ such that 
     29an observed data set and an expected dataset (or 'theory') calculated as 
    3330 
    3431.. math:: 
    3532 
    36   \chi^2_N 
    37   =  \sum[(Y_i - \mathrm{theory}_i)^2 / \mathrm{error}_i^2] / N_\mathrm{pts} 
     33  \chi^2 
     34  =  \sum[(Y_i - \mathrm{theory}_i)^2 / \mathrm{error}_i^2] 
    3835 
    39 When performing a fit, *SasView* instead displays the reduced $\chi^2_R$, 
    40 which takes into account the number of fitting parameters $N_\mathrm{par}$ 
    41 (to calculate the number of 'degrees of freedom'). This is computed as 
     36Fitting typically minimizes the value of $\chi^2$.  However, for assessing the 
     37quality of the model and its "fit" this parameter is not terribly helpful on its 
     38own.  Thus *SasView* instead displays a normalized version of this parameter, 
     39using the traditional reduced $\chi^2_R$.  This is the $\chi^2$ divided by the 
     40degrees of freedom (or DOF). The DOF is simply the number of data points being 
     41considered reduced by the number of free (i.e. fitted) parameters. Note that 
     42model parameters that are kept fixed do *not* contribute to the DOF (they are 
     43not"free". This reduced value is then given as 
    4244 
    4345.. math:: 
     
    4749  / [N_\mathrm{pts} - N_\mathrm{par}] 
    4850 
    49 The normalized $\chi^2_N$ and the reduced $\chi^2_R$ are very close to each 
    50 other when $N_\mathrm{pts} \gg N_\mathrm{par}$. 
     51where $N_\mathrm{par}$ is the number of *fitted* parameters. Note that this 
     52means the displayed value will vary depending on the number of parameters used 
     53in the fit.  In particular, when doing a calculation without a fit (e.g. 
     54manually changing a parameter) the DOF will now equal $N_\mathrm{pts}$ and the 
     55$\chi^2_R$ will be the smallest possible for that combination of model, data 
     56set and set of parameter values. 
     57 
     58When $N_\mathrm{pts} \gg N_\mathrm{par}$ as it should for proper fitting, the 
     59value of the reduced $\chi^2_R$ will not change very much. 
    5160 
    5261For a good fit, $\chi^2_R$ tends to 1. 
Note: See TracChangeset for help on using the changeset viewer.