stata常用命令

合集下载
相关主题
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

用help命令熟悉以下命令的功能:

cd:(Change directory)改变stata的工作路径

用法:(cd changes the current working directory to the specified drive and directory.)

●指定全路径:cd e:\

●指定相对路径(如果当前路径已经指向e:\那么下面命令将达到和上面全路

径命令同样效果):

●cd .. 返回上一级目录

dir:(Display filenames)显示当前目录下的文件信息

用法:(list the names of files in the specified,the names of the commands come from names popular on Unix and Windows,filespec may be any valid Mac, Unix, or Windows file path or file)工作列表文件中指定的名称目录,命令的名称来自名字流行的Unix和Windows文件规范可以是任何有效的Mac,Unix或Windows文件路径或文件。

. dir, w

. dir *.dta

. dir \mydata\*.dta

List:(List values of variables)列出指定变量的取值

用法:(st displays the values of variables. If no varlist is specified, the values of all the variables are displayed)列表显示变量的值。如果没有指定varlist,所有的值显示的变量。list [varlist] [if] [in] [, options]

. list in 1/10

. list mpg weight

. list mpg weight in 1/20

. list if mpg>20

. list mpg weight if mpg>20

. list mpg weight if mpg>20 in 1/10

Describe:(Describe data in memory or in file)描述内存或者文件中的数

据(样本数、变量类型等信息)

用法:(describe produces a summary of the dataset in memory or of the data stored in a Stata-format dataset. For a compact listing of variable names, use describe, simple.)

●描述内存数据:

●描述文件数据:describe [varlist] using filename [, file_options]

Use:(Load Stata dataset)调用数据,打开数据文件(以dta结尾)文

件名+.dta 数据读入stata

用法:(use loads into memory a Stata-format dataset previously saved by save. If filename is specified without an extension, .dta is assumed. If your

filename contains embedded spaces, remember to enclose it in double quotes.)使用Stata-format加载到内存中保存数据集之前保存。如果文件名没有一个扩展,指定。dta。如果你的文件名包含嵌入空间,记得附上双引号。

◆use rank nation contin using d:\data\

◆use in 1/50 using d:\data\

◆use if contin==3 using d:\data\hdr2004

help:帮助功能

用法:help+命令名,回车后结果窗口会给出所有和这个命令相关的帮助文件名和链接列表。

Help cd/dir…….

Edit:(Browse or edit data with Data Editor)编辑数据

用法:(edit brings up a spreadsheet-style data editor for entering new data and editing existing data. edit is a better alternative to input)编辑提出spreadsheet-style数据编辑器输入新数据和编辑现有数据。编辑是输入一个更好的选择。利用数据编辑器进行数据编辑。

相关文档
最新文档