Looks like i am going to bother very often with syntax question.
Thank you.
Original Message:
Sent: Wed January 17, 2024 03:44 PM
From: Jon Peck
Subject: Coding
I see that you have the bare minimum, so you will need to upgrade to get CTABLES either by licensing just that option or getting the Standard Edition.
--
Original Message:
Sent: 1/17/2024 3:36:00 PM
From: IBMcode SPSS
Subject: RE: Coding
This is what it shows:
- IBM SPSS Statistics
- IBM SPSS Data Preparation
- IBM SPSS Bootstrapping
- IBM SPSS Statistics Base
Thank you.
------------------------------
IBMcode SPSS
Original Message:
Sent: Wed January 17, 2024 03:30 PM
From: Jon Peck
Subject: Coding
Run SHOW LIC from the syntax window to see what you are licensed for. There is a stripped down BASE version, but my impression is that that isn't used very often. It certainly would not be a good start on replacing SAS functionality.
The CTABLES option is also available for licensing separately.
--
Original Message:
Sent: 1/17/2024 3:16:00 PM
From: IBMcode SPSS
Subject: RE: Coding
It is not included in the Analyze tab.
I tried using the syntax:
ctables
/ variables = Group Gender.
and it gives an error as:
"There is no license for SPSS Custom Tables"
Thank you.
------------------------------
IBMcode SPSS
Original Message:
Sent: Wed January 17, 2024 03:05 PM
From: Jon Peck
Subject: Coding
Are you sure? CTABLES is included in the Standard Edition.
--
Original Message:
Sent: 1/17/2024 2:53:00 PM
From: IBMcode SPSS
Subject: RE: Coding
Hi John,
As i tried to follow your solution, l found out my license version does not include this option.
Anyway, I appreciate your help.
Thank you.
------------------------------
Leksi Pera
Original Message:
Sent: Tue January 16, 2024 06:18 PM
From: Jon Peck
Subject: Coding
First, make sure that the measurement levels are set correctly (Data Editor > Variable View or the VARIABLE LEVEL command). Then use CTABLES (Analyze > Tables > Custom Tables).
Drag the variables to the Row area; then click on Statistics and choose which ones you want. You have many choices there. You can also add a columns dimension if you want something more like a crosstab.
--
Original Message:
Sent: 1/12/2024 5:13:00 PM
From: Leksi Pera
Subject: Coding
Hello,
As new user of SPSS i have a question as follows:
Suppose is given a dataset :
Group | Gender |
1 | M |
1 | M |
1 | F |
1 | |
2 | F |
2 | F |
2 | F |
2 | M |
In SAS , using proc freq; table Group*Gender/list missing; outputs the result in tabular form as follows:
|
1 | 12.50 | 1 | 12.50 |
1 | 12.50 | 2 | 25.00 |
2 | 25.00 | 4 | 50.00 |
3 | 37.50 | 7 | 87.50 |
1 | 12.50 | 8 | 100.00 |
I tried to achieve same result in SPSS using freq and crosstab method , but I could not:
*1.
freq variables = Group Gender.
*2.
crosstabs
/tables =Group by Gender
/MISSING = include.
I would appreciate any help on this.
------------------------------
Leksi Pera
------------------------------