I have two groups of data that describe groups with treatment (dummyG=1) and without treatment(dummyG=0). And I want to make combination normal distribution data. I have already succeed create graph with only 1 normal distribution with this command
[histogram pengh_nett if dummyG==1 , frequency normal ]
[histogram pengh_nett if dummyG==0, frequency normal ]
So how to combine both of graph?
[histogram pengh_nett if dummyG==1 , frequency normal ]
[histogram pengh_nett if dummyG==0, frequency normal ]
So how to combine both of graph?
Comment