Dear All,
I am trying to use log to create an output PDF containing only some selected parts of my output. Consider the following minimal example:
I want the PDF to read: "test text: 100". is there a way to surpress everything else? I understand that the entire log file is helpful as well, but I would like this as a summary log file for the non technical people on the team. however I don't want to write it manually, everytime I change some procedures. Can anyone help me out?
Best,
Jannic
I am trying to use log to create an output PDF containing only some selected parts of my output. Consider the following minimal example:
Code:
clear set obs 100 cd "C:\Users\jannic\Dropbox\Pelizzon\QE - Insurances - Copy Jannic\sandbox" log using testlogfile.smcl, replace gen x = rnormal() tab x log on di "test text: " `r(N)' log off log close translate testlogfile.smcl testlogfile.pdf, replace
Best,
Jannic
Comment