I created the below marginsplot graphs and restricted the Y axis so that the variation between the groups is clear. My professor suggested that a bar graph would be more intuitive but I haven't been able to restrict the Y axis in the same way (using y label or y scale) and therefore it doesn't look great. Is it possible to do? Thank you

Code:
regress willing_autism i.condition, r
margins condition
marginsplot, ytitle(Willingness to Hire - Autism) ylabel(5.6(0.2)6.45) xtitle(Experimental Arm - Autism)

regress willing_adhd i.condition, r
margins condition
marginsplot, ytitle(Willingness to Hire - ADHD) ylabel(5.6(0.2)6.45) xtitle(Experimental Arm - ADHD)



Code:
graph bar willing_autism willing_adhd, over(condition) ytitle(Willingness to Hire)
​​​