It seems that I have a problem of scaling between histograms and density lines when I combine both in one plot. There is a clear visual difference between the density curve plotting alone and the combination of the two. What is the solution to have the same shape and scale between the two plots (density alone and density when combining it with histo)? I use this code:
hist(dataList[[cl12]],xlim=range(minx,maxx),breaks=seq(minx,maxx,pasx),col="grey",main=paste(paramlab,"Group",groupnum,Cl,sep=" "),xlab="",freq=FALSE)
d<-density(dataList[[cl12]])
lines(d,col="red")
With
dataList[[cl12]] <- c(4.399449e-02, 2.161474e-02, -1.515223e-05, 1.298059e+01,
3.163949e-01, -1.785220e+00, 1.041053e+01, 6.327219e-01, -5.778590e-03)
Thank you for your help!


ggplot2: The histogram plot there can be easily combined with a (properly scaled) density curve, search for "geom_density" in the documentation – krlmlr Feb 20 at 21:11