remove me

2012-06-26 Thread Baciu Maria-Alina
--- On Wed, 6/27/12, Ivan de Paula wrote: From: Ivan de Paula Subject: remove me To: Pspp-users@gnu.org Date: Wednesday, June 27, 2012, 3:28 AM -Inline Attachment Follows- ___ Pspp-users mailing list Pspp-users@gnu.org https://lists.

remove me

2012-06-26 Thread Privat
> > ___ Pspp-users mailing list Pspp-users@gnu.org https://lists.gnu.org/mailman/listinfo/pspp-users

Re: Need Help: How To Combine Data From 3 Different Files?

2012-06-26 Thread zamdlr
Again. Thank you very much Dr. Alan. I managed to settled the problem using your technique. :handshake: -- View this message in context: http://old.nabble.com/Need-Help%3A-How-To-Combine-Data-From-3-Different-Files--tp34070199p34076371.html Sent from the Gnu - PSPP - Users mailing list archive

Re: Need Help: How To Combine Data From 3 Different Files?

2012-06-26 Thread Alan Mead
They are probably blank records in the pst.sav file. If all of the good records have some non-missing variable, like X, then you could use syntax like: * for numeric variables. select if( not sysmis(X)). execute. or * for string variables. select if(not x=''). execute. to remove such cases

Re: Need Help: How To Combine Data From 3 Different Files?

2012-06-26 Thread zamdlr
I have 3 files before combined, which is pst.sav - 109 cases, pdt.sav - 17 cases & akaun.sav - 23 cases, when i combine this 3 files using this syntax: ADD FILES /FILE="C:\Documents and Settings\KMS\Desktop\Research\ResearchICTMPPB\soalselidikict\pst.sav" /FILE='C:\Documents and Settings\KMS\Des

remove me

2012-06-26 Thread Ivan de Paula
___ Pspp-users mailing list Pspp-users@gnu.org https://lists.gnu.org/mailman/listinfo/pspp-users

Re: Need Help: How To Combine Data From 3 Different Files?

2012-06-26 Thread zamdlr
Thank you very much Mr. Alan ... I managed to combine my 3 files using your given script... :handshake: Alan Mead-3 wrote: > > You need to describe what you are trying to do. > > > > On 6/26/2012 7:49 PM, zamdlr wrote: > > > -- > Alan D. Mead, Ph.D. > Assistant Professor of Industrial and

Re: Need Help: How To Combine Data From 3 Different Files?

2012-06-26 Thread Alan Mead
You need to describe what you are trying to do. For example, I had three different files containing the same variables (on different samples). I had already created SPSS SAV files. The follow code combined them into a single database: ADD FILES /FILE="G:\IIT\nsf_ethics_grant\analyses\2012-0

Re: Need Help: How To Combine Data From 3 Different Files?

2012-06-26 Thread zamdlr
Thanks J'. I found the syntax in manual as this: Per input file: /FILE={*,'file_name'} [/RENAME=(src_names=target_names)...] [/IN=var_name] [/SORT] Once per command: /BY var_list[({D|A})] [var_list[({D|A}]]...

Re: Need Help: How To Combine Data From 3 Different Files?

2012-06-26 Thread John Darrington
On Mon, Jun 25, 2012 at 07:02:11PM -0700, zamdlr wrote: Hi, first of all, sorry if this question has been asked before. I'm new to PSPP and have minimal knowledge of it. My questions is, I have 3 files, named as, pdt.sav, pst.sav & akaun.sav. All the files have the same va

Re: Data Manipulation

2012-06-26 Thread John Darrington
There are many ways to add cases and/or variables to an existing dataset. For example, to add a new variable, whose cases should take the value of one more than an existing variable: COMPUTE newvar = oldvar + 1. Adding cases can be done, for example, using the ADD FILES command, or INPUT PROGR

Data Manipulation

2012-06-26 Thread Michele Mor
Hi. Is there any plan to add some data manipulation features to PSPP? I am thinking of "Add cases" or "Add variables". Thanks, Michele ___ Pspp-users mailing list Pspp-users@gnu.org https://lists.gnu.org/mailman/listinfo/pspp-users