I am trying to compute the averages for the following (3) types of records but not sure if I am getting the correct results:
387 Total record count (valid/invalid/other) - created by 45 total users 94 of these records are valid - created by 5 different users 65 of these records are invalid - created by 10 different users 228 of these records are other - created by 30 different users
Average number of valid records - 387 / 94 = 4.11 Average number of invalid records - 387 / 65 = 5.95 Average number of other records - 387 / 228 = 1.69
Should the denominator value be the sum of each record type (94, 65, 228), the sum of all the records (387) or the sum of users for each record type (5, 10, 30)?
Thank you.
If you are talking about the average that everyone understands, then this is how to compute it, following your data:
Total records: $$ 94 + 65 + 228 = 387$$ Valid records average: $$\frac{94}{387}\times 100 \approx 24\%$$ Invalid records average: $$\frac{65}{387}\times 100 \approx 17\%$$ Other records average: $$\frac{228}{387}\times 100 \approx 59\%$$