⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 _virf_mknewfile.ado

📁 是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到
💻 ADO
字号:
*! version 1.0.4  08jul2004
program define _virf_mknewfile 
	version 8.0
	syntax anything(id="new irf filename" name=fname) /*
		*/ [, replace exact loud ]
/* anything passes in strings asis, so any quotes are still on	
 *  the string in the macro
 * use local assignment to strip off quotes
 *
 * exact is undocumented it removes the automatic appending of 
 * 	".vrf" extention to irf files
 *
 */
 
 	preserve 

 	local fname `fname'
	_virf_fck `"`fname'"', `exact'
 	local fname `"`r(fname)'"'

	qui drop _all
	qui set obs 1
	qui gen double irf = 1
	qui label var irf  "impulse response function (irf)"
	qui drop in 1
	char _dta[_signature] vrf
	char _dta[_version] 1.1
	qui save `"`fname'"', `replace'
	if "`loud'" != "" {
		di as txt `"(file `fname' created)"'
	}	
	restore
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -