Final Project Submission Question

Final Project Submission Question

by Nicholas Arger -
Number of replies: 1

I am having issues with formatting my table and figure for my final project in the markdoc file. 

1) My Notes in the do file are not showing up in the markdoc that explains my steps. Is there something special I need to do to have the text that comes after /*** display in the markdoc?


2)I cannot figure out a way to export Table1 into excel, so I have had to copy-paste it as a table from stata to Excel to format it. I then copied and pasted this into my markdoc. Because I cannot figure out how to have the text from the do file show up like in the example and in our homework, I have typed the legends in word. If this is not acceptable, instruction on how to everything in the do file would be most appreciated.


Thank you,

Nicholas

In reply to Nicholas Arger

Re: Final Project Submission Question

by Kristen -

Can you send me your .do file so I can check out why your notes may not be showing up?


To export table1 as an excel file you use the ,saving(filename.xls, replace) option. Here is an example:


sysuse auto, clear

 table1, by(foreign) vars(price conts \ weight contn \ rep78 cat) format(%2.1f) saving(auto.xls, replace)