Questions:
- Even if there is no "widely accepted" technique, is there a useful-and-above-average technique for estimating goodness of fit in orthogonal regressions?
- What are the pros/cons of this technique?
Background and Motivation: I recently discovered the orthogonal regression (=total least square regression, i.e. Deming with ratio of variances set to 1). Basically, I have $x$ and $y$, which are disease symptoms corresponding to two steps of a disease.
$$x = x^* + \mathrm{error}$$ $$y = y^* + \mathrm{error}$$
Here $(x,y)$ are the observed variables (symptoms measured visually, including error in disease assessment: same error for both) and $(x^*,y^*)$ are the latent variables ("true" symptoms). Note that $x^*$ and $y^*$ could be measured directly, e.g. by taking pictures (HD pictures then image analysis; close to no error in disease assessment); not done here because it is very long.
See here for the graphic (and first discussion on which regression to use). I made an orthogonal regression to have the relationship between $x$ and $y$. I would like to measure the goodness of fit for my orthogonal regression:
- explained differently, I would like to know how much $x$ could help in predicting $y$ (= how much visual disease assessment of a symptom helps in predicting the visual assessment of the other symptom).
- if not possible, knowing how much $x^*$ could help in predicting $y^*$ (= how much one symptom measured without error helps in predicting the other symptom measured without error; also, it would help in understanding the behaviour of the disease).
I asked for hints on R functions/packages on SO, on obtained this answer from @Gaurav:
There are many proposed methods to calculate goodness of fit and tolerance intervals for Deming Regression but none of them widely accepted. The conventional methods we use for OLS regression may not make sense. This is an area of active research. I don't think there many R-packages which will help you compute that since not many mathematicians agree on any particular method.