Greetings list members. I currently use the Windows version of Stata 15.1 (IC), but many of my students are using the Mac version. In an assignment, they need to write some graph export commands. In an effort to make things easier for those who are not strong coders, I suggested that they do a manual Save-As (with type = png) via the Graph window menu, and then copy the graph export command from the Review window, paste it into their DO-file, and edit as needed. This works for me with the Windows version. But alas, some of the Mac users have told me that it does not work for them: They say that the graph export command does not appear in the Review window.
I have two questions.
Thanks,
Bruce
I have two questions.
- Can any of you Mac users out there confirm that graph export does not get echoed to the Review window?
- If it does not get echoed, is there some way to fix the problem (some setting to change, for example)?
Code:
clear * sysuse auto histogram mpg * Manually save graph as png via Save-As in the Graph window. * Then copy the -graph export- command from the Review window. graph export "C:\Temp\mpg_histogram.png", as(png) replace
Bruce
Comment