一、调整变量格式:
format x1 %10.3f
——将 x1 的列宽固定为 10,小数点后取三位
format x1 %10.3g
——将 x1 的列宽固定为 10,有效数字取三位
format x1 %10.3e
——将 x1 的列宽固定为 10,采用科学计数法
format x1 %10.3fc
——将 x1 的列宽固定为 10,小数点后取三位,加入千分位分隔符
format x1 %10.3gc
——将 x1 的列宽固定为 10,有效数字取三位,加入千分位分隔符
format x1 %-10.3gc
——将 x1 的列宽固定为 10,有效数字取三位,加入千分位分隔符,加入“-”表示左对齐
二、合并数据:
use "C:\Documents and Settings\xks\桌面\2006.dta", clear
merge using "C:\Documents and Settings\xks\桌面\1999.dta"
——将 1999 和 2006 的数据按照样本(observation)排列的自然顺序合并起来
use "C:\Documents and Settings\xks\桌面\2006.dta", clear
merge id using "C:\Documents and Settings\xks\桌面\1999.dta" ,unique sort
——将 1999 和 2006 的数据按照唯一的(unique)变量 id 来合并,在合并时对 id 进行排序(sort)
建议采用第一种方法。
- help使用
Description
summarize calculates and displays a variety of univariate summary statistics. If no varlist is specified, summary statistics are calculated for all
the variables in the dataset.
Examples
. sysuse auto . summarize . summarize mpg weight . summarize mpg weight if foreign . summarize mpg weight if foreign, detail . summarize i.rep78
image.png
image.png
image.png
image.png
三-进行四则运算
. di 5+9
. di 5-9
. di 5*9
. di 10/2
. di 10^2
. di exp(0)
. di ln(1)
. di sqrt(4)
image.png
- 需求帮助
- help 帮助
- search 网络寻求帮助
- 进入某路径
- cd // 设定内存
• set memory 20m // 设置 STATA 的内存空间为 20m
- 打开和保存数据
• clear // 清空内存数据
• use // 打开 STATA 格式的数据文件
• save // 保存内存中的数据 - 导入数据
• input // 录入数据
• edit // 编辑数据
• infile // 导入数据
• insheet // 导入数据 - 重整数据
• append // 将有相同结果的数据纵向拼接(观察值拼接)
• merge // 将两个数据文件横向拼接
• xpose // 数据转置
• reshape
• generate // 生成新的数据
• egen // 生成新的数据
• rename // 变量重命令
• drop // 删除变量或观察值
• keep // 保留变量或观察值
• sort // 对观察值按从小到大顺序重新排列
• encode // 数值型数据转换为字符型数据
• decode // 字符型数据转换为数值型数据
• order // 变量顺序的重新排列
• by // 分类操作 - 报告数据
• describe // 总体展示数据情况
• codebook // 展示数据库中的每个变量情况
• list // 列示内存中的数据
• count // 报告共有多少观察值
• inspect // 报告变量的分布
• table // 数据列表
• tabulate // 联列表 - 显示和保存输出结果
• display // 显示计算结果
• log // 将输出结果存放入结果文件