Tables and axes > Include and substitution > Grid tables > Weighted grids
 
Weighted grids
Grid tables can be weighted. Normally, they’ll be part of a weighted run and the weighting characteristics are defined using ordinary axes such as age, sex or region. If you need to define a weighting matrix specifically for a grid you must do so using a dummy axis since Quantum does not accept grid axes on wm statements.
The dummy axis must have the same number of elements as there are cells in the grid axis. You can create it by using a col statement that refers to a blank column. For example, if the grid axis is:
l rating
n01Brand A;col(a)=134
n01Brand B;col(a)=135
side
col a00;Base;Excellent;Satisfactory;Very bad
define the dummy axis as:
l dumgrid
col 90;1;2;3;4;5;6
Then create a weighting matrix for the grid but instead of using the name of the grid axis on the wm statement you use the name of the dummy axis:
wm9 dumgrid;factor;1.25;1.16;1.30;0.98;1,01;0.92
To weight the grid, name the matrix on the tab statement as for any other table:
tab rating grid;wm=9
When the table is created, respondents who rated brand A as excellent are given a weight of 1.25, respondents who weighted brand A as satisfactory are given a weight of 1.16, and so on.
See also
Grid tables