- haveged can be run as an application if also running as a daemon (Closes: #998382). Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
10d5974907
commit
363454abff
54 changed files with 6554 additions and 5557 deletions
13
ent/examine_chi_square.R
Normal file
13
ent/examine_chi_square.R
Normal file
|
@ -0,0 +1,13 @@
|
|||
d <- read.table('chi.txt', header = FALSE, sep = "", dec = ".")
|
||||
summary(d)
|
||||
h <- hist(d[,1],breaks=20)
|
||||
chisq.test(h$counts)
|
||||
h$counts=h$counts/sum(h$counts)
|
||||
x11()
|
||||
plot(h, col = "gray")
|
||||
curve(100/length(h$counts)*dunif(x,0,100),add=TRUE, col="red")
|
||||
x11()
|
||||
ks.test(d[,1], "punif", 0, 100)
|
||||
plot(ecdf(d[,1]))
|
||||
curve(punif(x, 0, 100), add=TRUE, col="red")
|
||||
#locator(1)
|
Loading…
Add table
Add a link
Reference in a new issue