Hello all,
Admittedly a mundane question here... I'm simply trying to plot an inverted normal distribution for an upcoming presentation. I've successfully plotted a normal distribution, but now I simply need to flip it upside down.
Any suggestions would be greatly appreciated! I recently converted to Stata from SPSS and apologies for presumably a rather elementary question!
J.
Admittedly a mundane question here... I'm simply trying to plot an inverted normal distribution for an upcoming presentation. I've successfully plotted a normal distribution, but now I simply need to flip it upside down.
Code:
clear set obs 100 gen x=rnormal(0,1) twoway function y=normalden(x), range(-4 4) xtitle("{it: x}") /// ytitle("Density") title("Standard Normal")
J.
Comment