Hi,
I am graphing the following histogram. I want to do the following:
1. I want to remove the top and right axes borders so it should only have the y axis and x axis line instead of the boxes we have now.
2. I would like to increase the size of the individual city plots
3. I would like to increase the space between the graphs Bogota-Manila and New York-Paris i.e. add more white space
4. I would like to change the y-axis numbering from .002 to 0.002 for all the numbers.
Here is the code I currently have. How do I modify this for that?

I am graphing the following histogram. I want to do the following:
1. I want to remove the top and right axes borders so it should only have the y axis and x axis line instead of the boxes we have now.
2. I would like to increase the size of the individual city plots
3. I would like to increase the space between the graphs Bogota-Manila and New York-Paris i.e. add more white space
4. I would like to change the y-axis numbering from .002 to 0.002 for all the numbers.
Here is the code I currently have. How do I modify this for that?
Code:
twoway (histogram speed if post_covid==0, by(cityname_corrected) color(blue%40) subtitle(, fcolor(white) lstyle(none))) ///
(histogram speed if post_covid==1, by(cityname_corrected) color(yellow%60) subtitle(, fcolor(white) lstyle(none))), ///
legend(order(1 "Before March 2020" 2 "After March 2020") region(lstyle(none)))

Comment