I am fairly new to stata. I would like to create a stacked bar graph that centers around 0 (scale -100 to 100) instead of 1 to 100. Is there a simple way to do this? Here is the code I currently have and that chart that is produced.
Thank you so much for your help!
graph bar strongly_positive slightly_positive slightly_negative strongly_negative, over(asset_class_name) stack percent bar(1, fcolor(green) fintensity(inten80)) bar(2, fcolor(green) fintensity(inten50)) bar(3, fcolor(red) fintensity(inten50)) bar(4, fcolor(red) fintensity(inten80))
Thank you so much for your help!
graph bar strongly_positive slightly_positive slightly_negative strongly_negative, over(asset_class_name) stack percent bar(1, fcolor(green) fintensity(inten80)) bar(2, fcolor(green) fintensity(inten50)) bar(3, fcolor(red) fintensity(inten50)) bar(4, fcolor(red) fintensity(inten80))
Comment