Hi All,
I am having trouble adjusting the length of column headers to show the entire text, when presenting a matrix using matlist. Any help is appreciated!
Ariel
I am having trouble adjusting the length of column headers to show the entire text, when presenting a matrix using matlist. Any help is appreciated!
Ariel
Code:
* Example generated by -dataex-. For more info, type help dataex clear input float(ALL1 ALL2 ALL3 ALL4 ALL5 ALL6) -.1982456 .04262157 -4.651298 3.298521e-06 -.28178236 -.11470888 -.02752678 .04406928 -.6246251 .5322171 -.11390098 .05884742 -.023157895 .04252423 -.5445812 .5860416 -.10650386 .06018807 -.063825496 .04219687 -1.5125648 .13039024 -.14652982 .018878844 .02011696 .04021326 .50025684 .6168942 -.05869959 .0989335 end
Code:
mkmat ALL*, matrix(ALL) mat colname ALL = "exp(b)" "std. err." "z" "P>|z|" "[95% conf." "interval]"
Code:
matlist ALL, cspec(& %12s | %9.0g & b %9.0g & %5.2f & %7.3f & w10 L %9.0g & R %9.0g &) rspec(--&&&&-)
Comment