doc: Move output examples from "examples" to "pspp-figures".
[pspp] / doc / pspp-figures / compute.sps
1 get file='physiology.sav'.
2
3 * height is in mm so we must divide by 1000 to get metres.
4 compute bmi = weight / (height/1000)**2.
5 variable label bmi "Body Mass Index".
6
7 descriptives /weight height bmi.