Suppress Smaller values in SPSS Frequencies output -


is there spss syntax can me suppress smaller values when displaying frequencies? i'm able hide small values using cross-tabs, when use frequencies command i'm not able suppress or hide small values.

this current syntax: there command add in suppressing output less 10? thank you!

frequencies variables = alcoholany     /order=analysis. 

as far know can't through frequencies command alone - you'll need identify cases first , filter them out before running it:

aggregate /out=* mode=add/break=alcoholany/ncat=n. compute filt=ncat>=10. filter filt. frequencies variables = alcoholany /order=analysis. filter off. 

Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -