Hello there, I've been trying to create a line graph, something similar to this. It's quite amateurish.
The x axis - is a score, continuous variable
I would like to plot the score for a binary variable: procedure 1, procedure 2
My binary variables are weighted using iptw so I need to take into consideration, the weight ----> pw=_weight
I've tried the following
Can you please point me in the right direction ? 
The x axis - is a score, continuous variable
I would like to plot the score for a binary variable: procedure 1, procedure 2
My binary variables are weighted using iptw so I need to take into consideration, the weight ----> pw=_weight
I've tried the following
Code:
lowess score if procedure == 1 //// too few variables specified twoway score if procedure == 1 //score is not a atwoway plot type
Comment