Re: [R] Kernel Density Estimation at manually specified points

2011-06-28 Thread Stephen Ellison
m(500) plot(density(x)) at<-seq(-2, 2, 0.25) points(my.density(x, at=at)) > -Original Message- > From: r-help-boun...@r-project.org > [mailto:r-help-boun...@r-project.org] On Behalf Of Carsten Harlaß > Sent: 27 June 2011 20:19 > To: dcarl...@tamu.edu > Cc: r-hel

Re: [R] Kernel Density Estimation at manually specified points

2011-06-27 Thread David Winsemius
Behalf Of Carsten Harlaß Sent: Sunday, June 26, 2011 7:02 PM To: r-help@r-project.org Subject: [R] Kernel Density Estimation at manually specified points Hello, my name is Carsten. This ist my first post to R-help mailing list. I estimate densities with the function "d

Re: [R] Kernel Density Estimation at manually specified points

2011-06-27 Thread Carsten Harlaß
r-help-boun...@r-project.org] On > Behalf Of Carsten Harlaß > Sent: Sunday, June 26, 2011 7:02 PM > To: r-help@r-project.org > Subject: [R] Kernel Density Estimation at manually specified points > > Hello, > > my name is Carsten. This ist my first post

Re: [R] Kernel Density Estimation at manually specified points

2011-06-27 Thread David L Carlson
day, June 26, 2011 7:02 PM To: r-help@r-project.org Subject: [R] Kernel Density Estimation at manually specified points Hello, my name is Carsten. This ist my first post to R-help mailing list. I estimate densities with the function "density" out of the package "st

[R] Kernel Density Estimation at manually specified points

2011-06-26 Thread Carsten Harlaß
Hello, my name is Carsten. This ist my first post to R-help mailing list. I estimate densities with the function "density" out of the package "stats". A simplified example: #generation of test data n=10 z = rnorm(n) #density estimation f