这是教对象Stata系列视频的配套代码。对应视频与笔记链接请见下方链接,配套代码请见分割线下方。
视频合集
bilibili视频链接
配套笔记链接
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
webuse womenwage.dta webuse lifeexp, clear
findit ivqreg2 help regress
ssc install ivqreg2 ssc install ivqreg2, replace
cd "C:\Users\wugan\Desktop\教对象Stata系列\第1课:软件简介与数据管理"
log using "日志文件\日志.scml",replace
log off log on
log close
log using "日志文件\日志.scml", append log close
webuse womenwage.dta
use "CLHLS-HF\Stata_data\CLHLS_2018",clear
save "CLHLS-HF\Stata_data\演示数据",replace
rm "CLHLS-HF\Stata_data\演示数据.dta"
cd "C:\Users\wugan\Desktop\教对象Stata系列\第1课:软件简介与数据管理\气象数据"
import excel "2000-2020年逐年风速\【2000年】逐年风速.xlsx", sheet("Sheet1") firstrow clear save "Stata数据\2000年-风速.dta",replace
import delimited "2001-2022年逐年平均气温\【2001年】逐年平均气温.csv", clear save "Stata数据\2001年-平均气温.dta",replace
cd "C:\Users\wugan\Desktop\教对象Stata系列\第1课:软件简介与数据管理" import spss using "CLHLS-HF\SPSS_data\clhls_2018_cross_sectional_dataset_15874.sav",clear
export excel using "CLHLS-HF\SPSS_data\clhls_2018",replace sheet("2018")
|