I am using weights when running the data with SPSS custom tables.
Thus it is expected that the column or row values may not add up to row total, column total or Table Total due to rounding of decimals
sample table result:
variable 2
category 1 category 2 Total
variable 1 category 1 45 52 97
category 2 60 56 115
Total 105 107 211
Is there a way to force SPSS to output the correct row, column, or table totals?
expected table output:
variable 2
category 1 category 2 Total
variable 1 category 1 45 52 97
category 2 60 56 116
Total 105 108 213
To be clear: the total displayed by
CTABLES
is mathematically correct. However, if you want to display as the total the sum of the displayed values in the rows, instead, the only way to do this is by using theSTATS TABLE CALC
extension command to recompute the totals using the rounded values.Here is how to do that. First, you need to create a Python module named
customcalc.py
with the following contentsThis file should be saved in the python\lib\site-packages directory under your Statistics installation or anywhere else that Python can find it.
Then, after your
CTABLES
command, run this syntaxThat custom function adds up the formatted values in each row instead of the full precision values. If you have suppressed the default statistic name, Count, so that "Total" is the innermost label, use LEVEL=-1 instead of LEVEL=-2 ABOVE.