search for: plaplace

Displaying 1 result from an estimated 1 matches for "plaplace".

Did you mean: laplace
2006 Mar 18
0
How to bootstrap one-sample ks.test?
Hello! I am testing if my data are distributed under Laplace's distribution, which I managed to do with: > library(rmutil) > ks.test(jitter(x), "plaplace", mean(x), sd(x)) Nevertheless, I am trying to bootstrap ks.test without any success. Something is wrong in my commands: > data = read.table("data.dat",T) > library(rmutil) > library(boot) > ks.laplace = function(d, w) > ks.test(jitter(d), "plaplace", mean(...