I'm interested in plotting 100 lines in STATA of a density graph into 1 plot. Is there an easy way to do this. I noticed that `twoway connected' has a limit.
forval x=1/100{
gen rexponential`x'=rexponential(2)
}
foreach x in rexponential1-rexponential100 {
multidensity gen `x'
}
Now I'd like to graph the densities on 1 plot.
forval x=1/100{
gen rexponential`x'=rexponential(2)
}
foreach x in rexponential1-rexponential100 {
multidensity gen `x'
}
Now I'd like to graph the densities on 1 plot.

Comment