Hi Arin,

It would appear that there isn't a chi square test at the moment. If you 
want to implement one yourself, you can compute the quantiles of a chi 
squared distribution using DIstributions.jl (if you do this, please 
consider submitting it to HypothesisTests.jl). Alternatively, you could 
call the R function via RCall.jl or Rif.jl.

SImon

On Sunday, 8 February 2015 23:32:48 UTC, Arin Basu wrote:
>
> Hi All,
>
> Please pardon my ignorance, but how does one do chisquare test in Julia. 
> Something like,
>
> ```
>
> chisq.test(x, y = NULL, correct = TRUE,
>            p = rep(1/length(x), length(x)), rescale.p = FALSE,
>            simulate.p.value = FALSE, B = 2000)
>
> ```
>
> in R
>
>
> I could not find anything in the documentation. I must not have searched 
> enough, what can it be?
>
>
> Best,
>
> Arin
>
>

Reply via email to