Displaying 1 result from an estimated 1 matches for "heights1".
Did you mean:
heights
2007 May 31
0
distribution of peaks in random data results
...1, L)
2- Apply a kernel convolution method to the resulting permuted points profile.
For this I applied the function: d <- density(position1, bw = "sj")
3- Record the heights of all peaks.
For this I used the estimated density values from the output of the density function above: heights1 <- d$y
4- Repeat step 1 and 2 to be able to have a distribution of the peaks from the random data results.
I don´t know how to perform this step!!!
5- Compute the threshold by determining the alfa-level in the empirical CDF of the null distribution.
Assuming ´heightsALL´ is the output of st...