Lets say I am trying to find a linear regression between Weight and Height of a person. $W=b_0+b_1 H+e$
The data I have gathered from 8 people is like this:
# W(kg) H(cm)
1. 68 168
2. 64 170
3. ? 160
4. ? 180
5. ? 145
6. ? 191
7. 69 185
8. 80 191
Where I know that the sum of ?'s is 280, but I do not know exact data of each of them (because, let's say, at the time, I only had scales, which had a minimum scale of $200$. Dumb reason, I know, but that's just for the sake of example).
So, my question is this: how do I create my $W$ matrix so I can make computations (to find out $b_0$ and $b_1$ using least squares method)? :)
Just for the future generations I am going to put a link to a program that I used to diaggregate the data for me. ECOTRIM. Event it is an old program, it is working decently and diaggregated data for me very well. I did compare the real GDP data with diaggregated one, and it was shooting as close as not more than 5% away. Quite a decent tool.