SPSS creating table with multipe variables down, and the variables values horizontally

StackOverflow https://stackoverflow.com/questions/21829513

  •  12-10-2022
  •  | 
  •  

Pregunta

Let's say I have two variables. "Like Ice" and "Like cofee". Both variables have the same values "Do not like", "like", "love".

I want to make a table displaying this:

        | Do not like | Like | Love |
Like ice|     8       |   3  |  15  |
Like Cof|    13       |   7  |   6  |

the variables downwards, and their values horizontal, displaying the number of choices.

Thank you!

¿Fue útil?

Solución

Very easy with ctables. Put the variables in the rows and specify statistic in the opposite dimension. This is called a comperimeter table.

Otros consejos

If you have only original TABLES module, or for some other reason want to stick with it, you may use the following syntax:

TABLES
   /TABLE var1+var2 by (LABELS).

Default statistics is COUNT.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top