Hello everyone,
I would like to use
with return list. However, tab doesn't provide the numbers I would like to access in return list.
Here is an example which also explains what for I want to use that:
(Yeah there is an error in the end. I have no idea why, but I just want to fill in X and Y. Just as with the average price.)
As I need to do this repetitively I am interested in any shortcuts I could use here.
Thanks in advance.
I would like to use
Code:
tab VAR
Here is an example which also explains what for I want to use that:
Code:
log close _all clear all // this clears data, analysis previously loaded set more off // this allows all results to print at once, rather than one screen at a time set linesize 70 // this controls width of text lines in Stata; // avoid wrapping or running off page version 15 // sets Stata version; ************************************** Using MarkDoc & Microsoft Word set linesize 80 qui log using autotest, replace smcl //OFF sysuse auto sum price return list //ON txt "Average price is" r(mean) ". //OFF tab foreign return list //ON txt "There are ? domestic and ? foreign cars in the dataset." qui log c markdoc name, exp(docx) //docx for ms word
As I need to do this repetitively I am interested in any shortcuts I could use here.
Thanks in advance.
Comment