I wanted to estimate the difference of two means (say: $\mu_1$ and $\mu_2$). I have the estimate of means (say: $m_1$ and $m_2$) with variance estimates (say: $v_1$ and $v_2$).
How do I calculate the weighted-estimate for difference of means ($\mu_2$ - $\mu_1$)?
I am thinking these two should work (in the order of preference):
- $\frac{v_1}{v_2} m_2 - m_1$
- $\frac {v_1} {v_2 + v_1} m_2 - \frac {v_2} {v_2 + v_1} m_1$
This problem may seem like the Behrens-Fisher problem. However, in my case the data is NOT normally distributed.
Any help is appreciated.