-- Mar 7 In-Class Exercise
1. PROJECTION eye_color != red on pperson. Since there are 6 eye_color values, we estimate 5/6 of the original table. (5/6)*10,000,000 = 83,333,333
2. PROJECTION eye_color = green on pperson. Since there are 6 eye_color values, we estimate 1/6 of the original table. (1/6)*10,000,000 = 16,666,666
3. PROJECTION annual_income > 50,000 on pperson. We estimate 1/3 of the original table. (1/3)*10,000,000 = 33,000,000
1. PROJECTION eye_color != red on pperson. Since there are 6 eye_color values, we estimate 5/6 of the original table. (5/6)*10,000,000 = 83,333,333
2. PROJECTION eye_color = green on pperson. Since there are 6 eye_color values, we estimate 1/6 of the original table. (1/6)*10,000,000 = 16,666,666
3. PROJECTION annual_income > 50,000 on pperson. We estimate 1/3 of the original table. (1/3)*10,000,000 = 33,000,000