Next: Variable Leave Status, Previous: Variable Labels, Up: Variables [Contents][Index]
These functions and types access and set attributes that are mainly used by graphical user interfaces. Their values are also stored in and retrieved from system files (but not portable files).
The first group of functions relate to the measurement level of numeric data. New variables are assigned a nominal level of measurement by default.
Measurement level. Available values are:
MEASURE_NOMINAL
Numeric data values are arbitrary. Arithmetic operations and numerical comparisons of such data are not meaningful.
MEASURE_ORDINAL
Numeric data values indicate progression along a rank order. Arbitrary arithmetic operations such as addition are not meaningful on such data, but inequality comparisons (less, greater, etc.) have straightforward interpretations.
MEASURE_SCALE
Ratios, sums, etc. of numeric data values have meaningful interpretations.
PSPP does not have a separate category for interval data, which would naturally fall between the ordinal and scale measurement levels.
Returns true if measure is a valid level of measurement, that
is, if it is one of the enum measure
constants listed above,
and false otherwise.
Gets or sets var’s measurement level.
The following set of functions relates to the width of on-screen columns used for displaying variable data in a graphical user interface environment. The unit of measurement is the width of a character. For proportionally spaced fonts, this is based on the average width of a character.
Gets or sets var’s display width.
Returns the default display width for a variable with the given width. The default width of a numeric variable is 8. The default width of a string variable is width or 32, whichever is less.
The final group of functions work with the justification of data when it is displayed in on-screen columns. New variables are by default right-justified.
Text justification. Possible values are ALIGN_LEFT
,
ALIGN_RIGHT
, and ALIGN_CENTRE
.
Returns true if alignment is a valid alignment, that is, if it
is one of the enum alignment
constants listed above, and false
otherwise.
Next: Variable Leave Status, Previous: Variable Labels, Up: Variables [Contents][Index]