- Data Analysis with IBM SPSS Statistics
- Kenneth Stehlik Barry Anthony J. Babinec
- 250字
- 2021-07-02 18:13:49
Demo - defining variable properties
You have seen that you can Define Variable Properties either in the Variable View or via syntax. Yet another way is to use Define Variable Properties found in the Data menu. An advantage of using Define Variable Properties is that you fill in a dialog box but can use the Paste command to obtain the constructed syntax.
Here, let's consider defining variable properties for MARITAL.
To use Define Variable Properties from the menus, navigate to Data | Define Variable Properties.
This opens the Define Variable Properties dialog box. Move MARITAL to the right-hand side:

Here is a portion of the Define Variable Properties box after you press Continue:

This dialog box is an all-in-one view that shows both the variable properties and the actual data summarized. You can type in this dialog box to add Variable properties for MARITAL.
Here is the dialog box with the fields filled in:

Here is the constructed syntax when you paste:
* Define Variable Properties.
*MARITAL.
VARIABLE LABELS MARITAL 'Marital Status'.
MISSING VALUES MARITAL(9).
VALUE LABELS MARITAL
1 'Married'
2 'Widowed'
3 'Divorced'
4 'Separated'
5 'Never Married'
9 'No Answer'.
EXECUTE.
- C語言程序設計案例教程
- Mastering Concurrency Programming with Java 8
- C#高級編程(第10版) C# 6 & .NET Core 1.0 (.NET開發經典名著)
- Advanced Machine Learning with Python
- Learn to Create WordPress Themes by Building 5 Projects
- Mastering SVG
- Hands-On Data Structures and Algorithms with JavaScript
- Servlet/JSP深入詳解
- JS全書:JavaScript Web前端開發指南
- Asynchronous Android Programming(Second Edition)
- 劍指Java:核心原理與應用實踐
- UVM實戰
- R用戶Python學習指南:數據科學方法
- Java程序設計案例教程
- 計算機應用基礎項目化教程