Hi there -- long time visitor, first time poster.
Using Stata SE 13.1 with the following user-installed programs relevant to my problem:
MRTAB from http://fmwww.bc.edu/RePEc/bocode/m (module to compute one- and two-way tables of multiple responses)
Version 8.2
I can't for the life of me figure out why this isn't working, given that it seemingly worked up until today with no tweaking to the specific line of code:
When I enable Set Trace On, the issue seems to be around the "mtest" option, which I've used previously with the same set of variables to no issue. Simply removing it allows the command to proceed.
All my variables are described the exact same as below:
Any help would be much appreciated!
Using Stata SE 13.1 with the following user-installed programs relevant to my problem:
MRTAB from http://fmwww.bc.edu/RePEc/bocode/m (module to compute one- and two-way tables of multiple responses)
Version 8.2
I can't for the life of me figure out why this isn't working, given that it seemingly worked up until today with no tweaking to the specific line of code:
Code:
// Macro local ccctabs "any_ccc cardio_flag gastro_flag malig_flag metabolic_flag neuromuscular_flag congen_gendefect_flag renal_flag respiratory_flag" // Code mrtab `ccctabs', by(reach_pat) col mtest nonames title(Complex Chronic Conditions) include
Code:
.... (trace on output with no issue) - ret add - } - if _rc { drop _all exit _rc } --------------------------------------------------------------------------------------------------- end tabi --- - mat `M'=nullmat(`M') \ (`r(chi2`mlrchi2')',`r(p`mlrchi2')') = mat __00000J=nullmat(__00000J) \ (,) , not found // <---------------------------PROBLEM HERE } ---------------------------------------------------------------------------------------- end mrtab.Mulipletest --- local df=`nby'-1 } ------------------------------------------------------------------------------------------------------ end mrtab --
Code:
storage display value variable name type format label variable label renal_flag long %8.0g la_yesno renal_flag
Comment