reg prod A B C
00 A 20 25 30
00 B 20 25 30
00 C 20 25 30
56 A 40 . 35
56 C 20 . 35
The above data shows that for regions 00 and 56 there should ne three products A,B,C. But region 56 has product B missing.It has only A and C. also the data shows variables A B C (products) and their count in each region.
Now since B is missing from region 56, how to add a dummy record with product B such that the data will be as shown below
reg prod A B C
00 A 20 25 30
00 B 20 25 30
00 C 20 25 30
56 A 40 1 35
56 B 40 1 35
56 C 40 1 35