hi there, I am trying to improve the visual display of my graphs , could you give me some ideas pls?
using
set scheme white_jet
here my dataset:

using
set scheme white_jet
here my dataset:
Code:
* Example generated by -dataex-. For more info, type help dataex clear input float(sex Zscore osteoperosis) 0 -.78 1 0 -.06 1 1 .2 1 1 .3 1 0 -.66 1 1 1.97 1 0 .93 1 0 -.77 1 1 .14 1 1 -1 1 1 -.95 1 1 1.38 1 1 -.84 1 0 -2.42 2 1 .44 1 0 .63 1 1 -.49 1 0 -1.26 2 0 .09 1 1 .12 1 end label values sex g2 label def g2 0 "female", modify label def g2 1 "male", modify label values osteoperosis g1 label def g1 1 "normal", modify label def g1 2 "osteopenia", modify
Code:
ologit osteoperosis i.sex age, or margins, at(sex=(0/1)) predict(outcome(1)) atmeans marginsplot, plot(sex) recast(bar) allxlabels by(sex) name(m1, replace) margins, at(sex=(0/1)) predict(outcome(2)) atmeans marginsplot, plot(sex) recast(bar) allxlabels by(sex) name(m2, replace) margins, at(sex=(0/1)) predict(outcome(3)) atmeans marginsplot, plot(sex) recast(bar) allxlabels by(sex) name(m3, replace) graph combine m1 m2 m3, /// title("Predicted Probabilities of Osteoporosis Outcomes by Sex") /// col(1)
Comment