I'm using Stata 15.1 on MacOS Mohave.
After running:
I get a nifty link to the exported file in the results window that looks like:
However, when I click on the link in the results window it opens up Safari and all I see is a blank white page. If I find the file in Finder I can open it without any issues. Moreover, if I type
the file opens in the default application as expected.
I'm looking for some general advice on what might be going wrong, and how to fix the issue. I might also add that there is not some event that I can point to as a possible suspect for causing the issue because I don't ever remember not having the issue.
After running:
Code:
esttab ped*aafs cyc*aafs using "tables/Logit Estimation Results, All Speed Zones, 2000-2017.doc" , /// rtf noomitted nobaselevels eform nogaps nonumbers legend collabels(none) /// eqlabels(none) onecell b(3) p(2) pr2(3) obslast label replace /// mlabels("Pedestrian Slight" "Pedestrian Severe/Fatal" "Cyclist Slight" "Cyclist Severe/Fatal") /// indicate("Weather Groups = *weather" "Season Groups = *season" "Year Dummies = *year") /// addnotes("Standard errors clustered at accident level" ) /// title("Logistic Regression Estimation Results by Injury Group, All Speed Zones, 2000-2017") /// varwidth(22) modelwidth(9)
Code:
(output written to tables/Logit Estimation Results, All Speed Zones, 2000-2017.doc)
Code:
shell open "tables/Logit Estimation Results, All Speed Zones, 2000-2017.doc"
I'm looking for some general advice on what might be going wrong, and how to fix the issue. I might also add that there is not some event that I can point to as a possible suspect for causing the issue because I don't ever remember not having the issue.
Comment