June 2018 Update
This commit is contained in:
parent
ba8067c3b7
commit
22f33d4004
5278 changed files with 84726 additions and 14379 deletions
|
|
@ -0,0 +1,7 @@
|
|||
program rms, rclass
|
||||
syntax varname(numeric) [if] [in]
|
||||
tempvar x
|
||||
gen `x'=`varlist'^2 `if' `in'
|
||||
qui sum `x' `if' `in'
|
||||
return scalar rms=sqrt(r(mean))
|
||||
end
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
clear
|
||||
set obs 20
|
||||
gen x=rnormal()
|
||||
|
||||
rms x
|
||||
di r(rms)
|
||||
1.0394189
|
||||
|
||||
rms x if x>0
|
||||
di r(rms)
|
||||
.7423647
|
||||
Loading…
Add table
Add a link
Reference in a new issue