Documentation: Add an example showing how AGGREGATE works
[pspp] / doc / pspp-figures / aggregate.sps
1 get file="personnel.sav".
2
3 aggregate outfile=* 
4         mode = replace
5         /break= occupation
6         /occ_mean_salaray = mean (salary)
7         /occ_median_salary = median (salary)
8         /occ_std_dev_salary = sd (salary).
9
10 list.