Hi there,
Somewhat unusual question -- I'm working on a report that will include graphs originally produced in Stata, but we'd like to make them look fancy using a designer who doesn't use Stata. We can of course generate the table equivalent of any graph we've created in Stata, but it would be much easier if there was some way to ask Stata to extract the values that a graph represents.
For example...
Obviously in this example its trivial to get the underlying values (Domestic: 19.8, Foreign: 24.8), but it would be fantastic if there was some way to be able to automate the extraction of this type of data for more complicated graphs, without having to think through how to create the table version of every graph.
Vague and likely impossible I know, but worth a try, maybe??
Somewhat unusual question -- I'm working on a report that will include graphs originally produced in Stata, but we'd like to make them look fancy using a designer who doesn't use Stata. We can of course generate the table equivalent of any graph we've created in Stata, but it would be much easier if there was some way to ask Stata to extract the values that a graph represents.
For example...
Code:
sysuse auto, clear graph bar (mean) mpg, over(foreign)
Vague and likely impossible I know, but worth a try, maybe??
Comment