Stata 11 help for exp_list

help exp_list -------------------------------------------------------------------------------

Title

exp_list -- Expression lists

Description

The expressions in exp_list are assumed to conform to the following grammar. Note that exp_list should not be enclosed in parentheses, though individual expressions may be.

exp_list contains (name: elist) elist eexp

elist contains newvarname = (exp) (exp)

eexp is specname [eqno]specname

specname is _b _b[] _se _se[]

eqno is ## name

exp is a standard Stata expression; see help exp.

Examples

. sysuse auto

. bootstrap (location: mean=r(mean) median=r(p50)) (scale: sd=r(sd) iqr=(r(p75)-r(p25)) range=(r(max)-r(min))) : summarize price, detail

. bootstrap or=(exp(_b[mpg])): logit foreign mpg weight

. jackknife sd=(r(sd)) skew=(r(skewness)), rclass: summarize mpg, detail

. permute price _b rmse=(e(rmse)): regress price trunk

. statsby _b n=(e(N)), by(rep78 foreign): regress mpg weight

Also see

Manual: [U] 13 Functions and expressions; [R] bootstrap, [R] jackknife, [R] permute, [R] simulate, [D] statsby; [SVY] svy brr, [SVY] svy jackknife

Help: [U] 13 Functions and expressions; [R] bootstrap, [R] jackknife, [R] permute, [R] simulate, [D] statsby [SVY] svy brr, [SVY] svy jackknife


© Copyright 1996–2009 StataCorp LP   |   Terms of use   |   Privacy   |   Contact us   |   What's new   |   Site index