Try again after
and show what it shows just before the error message.
Code:
set trace on set traced 1
- version 9 - local version : di "version " string(_caller()) ":" - syntax [anything] [using] [, SImple REPLACE *] - if ("`replace'"!="") { = if (""!="") { describe_mk `0' return add exit } - local varlist `"`anything'"' = local varlist `"bvare kevaree ethvare mdgvare y"' - if ("`simple'" == "") { = if ("" == "") { - `version' _describe `0' = version 11: _describe bvare kevaree ethvare mdgvare y storage display value variable name type format label variable label ------------------------------------------------------------------------------------------------------------------------------------------ bvare float %9.0g kevaree float %9.0g ethvare float %9.0g mdgvare float %9.0g year int %8.0g Year - return add - } - else { if (`"`options'"' != "") { di as err "simple may not be combined with other options" exit 198 } if (`"`using'"' != "") { qui `version' describe `varlist' `using', varlist if "`varlist'" == "" { local vars "`r(varlist)'" } else { local vars "`varlist'" } local wid = 2 local n : list sizeof vars if `n'==0 { exit } foreach x of local vars { local wid = max(`wid', length(`"`x'"')) } local wid = `wid' + 2 local cols = int((`c(linesize)'+1)/`wid') if `cols' < 2 { foreach x of local `vars' { di as txt `col' `"`x'"' } exit } local lines = `n'/`cols' local lines = int(cond(`lines'>int(`lines'), `lines'+1, `lines')) forvalues i=1(1)`lines' { local top = min((`cols')*`lines'+`i', `n') local col = 1 forvalues j=`i'(`lines')`top' { local x : word `j' of `vars' di as txt _column(`col') "`x'" _c local col = `col' + `wid' } di as txt } qui `version' describe `varlist' `using', short return add } else { ds `varlist' qui `version' _describe `varlist', short return add } }
set trace off
. multiline bvare kevaree ethvaree mdgvare y, xla(2000(2)2014) xtitle("") recast(connected) variable ethvaree not found r(111);
multiline bvare kevaree ethvare mdgvare y, xla(2000(2)2014) xtitle("") recast(connected)
Comment