Hello All:
I want to get rid of "case Proccessing Summary" in the spss output! do you have any idea? Thank you Behnaz _________________________________________________________________ Express yourself instantly with MSN Messenger! Download today it's FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/ |
Hi Behnaz
Assuming you use SPSS 12 or newer, you can use OMS to eliminate parts of the output, like in this example: DATA LIST FREE/copper(F8.2). BEGIN DATA 0.70 0.45 0.72 0.30 1.16 0.69 0.83 0.74 1.24 0.77 0.65 0.76 0.42 0.94 0.36 0.98 0.64 0.90 0.63 0.55 0.78 0.10 0.52 0.42 0.58 0.62 1.12 0.86 0.74 1.04 0.65 0.66 0.81 0.48 0.85 0.75 0.73 0.50 0.34 0.88 END DATA. OMS /SELECT TABLES /IF SUBTYPES='Case Processing Summary' /DESTINATION VIEWER=NO. EXAMINE VARIABLES=copper /PLOT BOXPLOT STEMLEAF NPPLOT /STATISTICS DESCRIPTIVES. OMSEND. Wednesday, October 25, 2006, 6:33:49 PM, You wrote: bs> I want to get rid of "case Proccessing Summary" in the spss output! do you bs> have any idea? -- Regards, Dr. Marta García-Granero,PhD mailto:[hidden email] Statistician --- "It is unwise to use a statistical procedure whose use one does not understand. SPSS syntax guide cannot supply this knowledge, and it is certainly no substitute for the basic understanding of statistics and statistical thinking that is essential for the wise choice of methods and the correct interpretation of their results". (Adapted from WinPepi manual - I'm sure Joe Abrahmson will not mind) |
In reply to this post by behnaz shirazi-2
I will share compliments of Richard Oliver.... Thanks Rich....
*************************************** You can suppress the display of just about anything you want with OMS. If you're a syntax user, here's an example: data list free /groupvar1 groupvar2 summaryvar. begin data 1 1 1 1 2 2 1 3 3 2 1 4 2 2 5 2 3 6 end data. *this is the default. means summaryvar by groupvar1 by groupvar2. *this will suppress the case processing summary table. oms select tables /if subtypes=['Case Processing Summary'] /destination viewer=no. means summaryvar by groupvar1 by groupvar2. omsend. *this will suppress the case processing summary table and the Notes table (which is already hidden by default). oms select tables /if subtypes=['Case Processing Summary' 'Notes'] /destination viewer=no. means summaryvar by groupvar1 by groupvar2. omsend. If you're not a syntax user, there's an OMS control panel on the Utilities menu -- but OMS is one of those cases where I think command syntax is actually easier than the GUI. >>> behnaz shirazi <[hidden email]> 10/25/2006 12:33:49 PM >>> Hello All: I want to get rid of "case Proccessing Summary" in the spss output! do you have any idea? Thank you Behnaz _________________________________________________________________ Express yourself instantly with MSN Messenger! Download today it's FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/ |
In reply to this post by Marta García-Granero
Hi Dear Marta:
I really appreciated your response.I used that and I could fix it.Thank you so much. Do you have any idea how can I delete the standard deviation and mean from my table through spss code. Thanks again Behnaz >From: Marta García-Granero <[hidden email]> >Reply-To: Marta García-Granero <[hidden email]> >To: [hidden email] >Subject: Re: Case Processing Summary >Date: Wed, 25 Oct 2006 19:16:22 +0200 > >Hi Behnaz > >Assuming you use SPSS 12 or newer, you can use OMS to eliminate parts >of the output, like in this example: > >DATA LIST FREE/copper(F8.2). >BEGIN DATA >0.70 0.45 0.72 0.30 1.16 0.69 0.83 0.74 1.24 0.77 >0.65 0.76 0.42 0.94 0.36 0.98 0.64 0.90 0.63 0.55 >0.78 0.10 0.52 0.42 0.58 0.62 1.12 0.86 0.74 1.04 >0.65 0.66 0.81 0.48 0.85 0.75 0.73 0.50 0.34 0.88 >END DATA. > >OMS /SELECT TABLES > /IF SUBTYPES='Case Processing Summary' > /DESTINATION VIEWER=NO. > >EXAMINE > VARIABLES=copper > /PLOT BOXPLOT STEMLEAF NPPLOT > /STATISTICS DESCRIPTIVES. > >OMSEND. > > >Wednesday, October 25, 2006, 6:33:49 PM, You wrote: > >bs> I want to get rid of "case Proccessing Summary" in the spss output! do >you >bs> have any idea? > >-- >Regards, >Dr. Marta García-Granero,PhD mailto:[hidden email] >Statistician > >--- >"It is unwise to use a statistical procedure whose use one does >not understand. SPSS syntax guide cannot supply this knowledge, and it >is certainly no substitute for the basic understanding of statistics >and statistical thinking that is essential for the wise choice of >methods and the correct interpretation of their results". > >(Adapted from WinPepi manual - I'm sure Joe Abrahmson will not mind) _________________________________________________________________ Express yourself instantly with MSN Messenger! Download today it's FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/ |
Hi Behnaz
I don't think it can be done, unless you export the whole table to a SPSS sav file using OMS, open the file, delete (using syntax) all the unwanted output and then use REPORT to print the rest as a pivot table. A lot of work Wednesday, October 25, 2006, 10:18:18 PM, You wrote: bs> Do you have any idea how can I delete the standard deviation and mean from bs> my table through spss code. -- Regards, Dr. Marta García-Granero,PhD mailto:[hidden email] Statistician --- "It is unwise to use a statistical procedure whose use one does not understand. SPSS syntax guide cannot supply this knowledge, and it is certainly no substitute for the basic understanding of statistics and statistical thinking that is essential for the wise choice of methods and the correct interpretation of their results". (Adapted from WinPepi manual - I'm sure Joe Abrahmson will not mind) |
Free forum by Nabble | Edit this page |