pspp-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Sex histogram


From: Alan Mead
Subject: Re: Sex histogram
Date: Thu, 06 Feb 2014 12:37:23 -0600
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.17) Gecko/20110428 Fedora/3.1.10-1.fc13 Thunderbird/3.1.10

Sorry, this should have been:

recode string.sex ('M'=1) ('F'=2) (ELSE=SYSMIS) into numeric.sex.
execute.

or

if( string.sex = 'M' ) numeric.sex = 1.
if( string.sex = 'F' ) numeric.sex = 2.
execute.





On 02/06/2014 10:39 AM, Alan Mead wrote:
compute string.sex ('M'=1) ('F'=2) (ELSE=SYSMIS) into numeric.sex.
execute.


On 2/6/2014 10:37 AM, Sam Allen wrote:
Denis, 

Can you recode the variable from string to numeric and try again? Surely this would be easier than R.

Sam

On Thursday, February 6, 2014, Denis Bergeron <address@hidden> wrote:
Hi everyone,

I trying PSPP for the first the, in place of SPSS.
I'm a student, and I can afford to go to the school lab everyday for SPSS work.
So, I,m tryting PSPP 0.7.9 included with Ubuntu 13.10
I trying to do histogram of the gender distribution on a pretty small echantillon.
I read on a lot of forum that PSPP doesn't output histogram for string variable.
Unfortunatly is a requirement for the class.
I would like to see if it's possible to save the PSPP file in LibreOffice Calc to do it.
Actually, I use R to do the job.

Thank you

Denis Bergeron

_______________________________________________
Pspp-users mailing list
address@hidden
https://lists.gnu.org/mailman/listinfo/pspp-users


_______________________________________________
Pspp-users mailing list
address@hidden
https://lists.gnu.org/mailman/listinfo/pspp-users

-- 

Alan D. Mead, Ph.D.
President, Talent Algorithms Inc.

+815.588.3846 (Office)
+267.334.4143 (Mobile)

http://www.alanmead.org

Announcing the Journal of Computerized Adaptive Testing (JCAT), a
peer-reviewed electronic journal designed to advance the science and
practice of computerized adaptive testing: http://www.iacat.org/jcat
_______________________________________________ Pspp-users mailing list address@hidden https://lists.gnu.org/mailman/listinfo/pspp-users

-- 

Alan D. Mead, Ph.D.
Assistant Professor
Industrial and Organizational Psychology Program
Department of Psychology
Lewis College of Human Sciences
Illinois Institute of Technology
3101 South Dearborn, 2nd floor
Chicago IL 60616 

+312.567.5933 (Campus)
+815.588.3846 (Home Office)
+267.334.4143 (Mobile)
+312.567.3493 (Fax)

http://www.iit.edu/~mead
http://www.alanmead.org

Announcing the Journal of Computerized Adaptive Testing (JCAT), a
peer-reviewed electronic journal designed to advance the science and
practice of computerized adaptive testing: http://www.iacat.org/jcat

reply via email to

[Prev in Thread] Current Thread [Next in Thread]