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 -

Python Tornado package error when running server -

Qt QGraphicsScene is not accessable from QGraphicsView (on Qt 5.6.1) -