近日使用《应用STATA做统计分析》(更新至STATA 10.0)一书开始学习STATA,在利用配套数据联系数据管理时,出现列表格式的异常显示结果:
. use "C:\mystata\mydata\statistics with stata\canada2.dta", clear
. list
(表1:列表正常)
. format unemp mlife flife %4.1f
. format pop %6.1f
. list
(表2:列表正常)
. generate type = 1
. replace type = 2 if place == "Yukon" | place == "Northwest Territories"
(2 real changes made)
. replace type = 3 if place == "Canada"
(1 real change made)
. list
(表3:列表正常)
. label variable type "Province, territory or nation"
. label define typelbl 1 "Province" 2 "Territory" 3 "Nation"
. label value type typelbl
. list
(表4:列表不正常)
请问各位STATA高手,出现列表4中的显示格式的原因是什么?如何避免?