Hello,
I'm plotting kdensity graphs as perhaps seem in my previous post.
I'm using the following code:
This produces a graph where treatment 0 (blue line) has a higher peak curve than treatment 1 (red line)
However, then I thought, I should be applying the -halfwidth- (bwidth) to both treatments. When I do, the red line peaks higher than blue line.
Should I be applying the same halfwidth's to both options of the treatment variable 0 and 1. ?

I'm plotting kdensity graphs as perhaps seem in my previous post.
I'm using the following code:
Code:
twoway (kdensity score if treatment==0) (kdensity score if treatment==1, bwidth(10))
However, then I thought, I should be applying the -halfwidth- (bwidth) to both treatments. When I do, the red line peaks higher than blue line.
Should I be applying the same halfwidth's to both options of the treatment variable 0 and 1. ?
Comment