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

📄 rvfplot.ado

📁 是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到
💻 ADO
字号:
*! version 3.2.0  29sep2004
program define rvfplot	/* residual vs. fitted */
	version 6
	if _caller() < 8 {
		rvfplot_7 `0'
		exit
	}

	_isfit cons anovaok
	syntax [, * ]

	_get_gropts , graphopts(`options') getallowed(plot addplot)
	local options `"`s(graphopts)'"'
	local plot `"`s(plot)'"'
	local addplot `"`s(addplot)'"'

	tempvar resid hat
	quietly _predict `resid' if e(sample), resid
	quietly _predict `hat' if e(sample)
	label var `hat' "Fitted values"
	label var `resid' "Residuals"
	version 8: graph twoway		///
	(scatter `resid' `hat',		///
		`options'		///
	)				///
	|| `plot' || `addplot'		///
	// blank
end

⌨️ 快捷键说明

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