An implementation of the Anderson Darling statistical test for exponential or Rayleigh distributions in Julia
Requirements
- Julia v0.2+
- Distributions package
Example
using Distributions
include("ADTest.jl")
X = rand(Exponential(1),100)
ADTest(X,"Exponential")
ADTest(sqrt(X),"Rayleigh")