I'm trying to create a graph using twoway, but I'd only like one title. When I type
```sysuse auto
twoway lpoly price mpg, by(foreign) title("Some cool title here")```
I get the following:

But I only want *one* overall title, not the same title repeated for each of the 'by' choices. How can I do this?
```sysuse auto
twoway lpoly price mpg, by(foreign) title("Some cool title here")```
I get the following:
But I only want *one* overall title, not the same title repeated for each of the 'by' choices. How can I do this?
Comment