[R] superimpose density line over hist
(Ted Harding)
Ted.Harding at nessie.mcc.ac.uk
Tue Dec 13 16:59:53 CET 2005
On 13-Dec-05 Albert Vilella wrote:
> Hi all,
>
> I'm trying to superimpose a rchisq density line over a histogram with
> something like:
>
> hist(alnlength)
> lines(density(rchisq(length(alnlength), 4)),col="red")
>
> But the rchisq line won't appear anywhere,
>
> Anyone knows what I am missing here?
Following up my earlier reply, and more in line with your precise
question above:
alnlength<-rchisq(1000,4)
hist(alnlength,breaks=0.25*(0:100))
j<-density(rchisq(1000,4))
lines(j$x,1000*0.25*j$y)
Best wishes,
Ted.
--------------------------------------------------------------------
E-Mail: (Ted Harding) <Ted.Harding at nessie.mcc.ac.uk>
Fax-to-email: +44 (0)870 094 0861
Date: 13-Dec-05 Time: 15:59:50
------------------------------ XFMail ------------------------------
More information about the R-help
mailing list