Trying to run metaxl.do (ancillary file for the dm0014.pkg, see net describe dm0114, from(http://www.stata-journal.com/software/sj25-2)) to test metaxl written by the BPLIM-team (Gustavo Iglésias, Paulo Guimaraes, & Marta Silva; see The Stata Journal, 25(2), 285-308), the following command produces an error message I can't solve:
I used set trace on to locate the error (extract here:
but this didn't help me to solve the issue. Any ideas?
Code:
. metaxl extract, meta(meta1) replace
_m not found
r(111);
Code:
----------------------------------------------------------------------------------------------------------------- end merge ---
- if _rc {
}
- else {
- qui replace label = "" if _m == 2
_m not found
qui count if _m == 1
local m1_prob = `r(N)'
if `m1_prob' {
qui gen obs = "Label not used" if _m == 1
local var_obs`lbl' "obs"
}
drop _m
qui export excel value label `var_obs`lbl'' using `"`filename'"', sheet("vl_`lbl'", replace) first(var)
}
}
frame drop `vlframe'
}
}
----------------------------------------------------------------------------------------------- end metaxl_extract.metavallab ---
--------------------------------------------------------------------------------------------------- end metaxl_extract.descvars ---
Comment