Dear statalist,
I would like to bring to your attention a simple problem related to the commands "collect title" and "collect notes". Apparently, although several examples are reported in the manual "STATA CUSTOMIZABLE TABLES
AND COLLECTED RESULTS, REFERENCE MANUAL, RELEASE 17", these commands are not recognized by Stata 17. The following code is taken directly from the manual:
Are you able to replicate the issue?
Many thanks in advance!
I would like to bring to your attention a simple problem related to the commands "collect title" and "collect notes". Apparently, although several examples are reported in the manual "STATA CUSTOMIZABLE TABLES
AND COLLECTED RESULTS, REFERENCE MANUAL, RELEASE 17", these commands are not recognized by Stata 17. The following code is taken directly from the manual:
Code:
clear all use https://www.stata-press.com/data/r17/nhanes2l replace agegrp = . if race==3 & agegrp==6 quietly: collect _r_b: regress bpsystol agegrp#race collect style cell result[_r_b], nformat(%5.2f) collect layout (colname) (result) collect style showempty off collect notes "The reference category is white individuals in the 20--29 age group." clear all use https://www.stata-press.com/data/r17/nhanes2l quietly: collect _r_b: regress bpsystol i.agegrp quietly: collect _r_b: regress bpsystol i.agegrp i.sex collect title "Models for systolic blood pressure"
Many thanks in advance!
Comment