November 2017
Beginner
316 pages
6h 40m
English
A hypothesis test is a testing mechanism that is used to determine whether the sample data had enough evidence that a given condition is true for the entire population of data.
There are two kinds of opposing hypothesis examined for a population (that is, the entire data set,) namely:
In Julia, the hypothesis testing can be achieved using the HypothesisTests.jl package. The package can be installed and used just like the packages discussed so far in this chapter (the reason being that METADATA.jl has the entry for these packages):
julia> Pkg.add("HypothesisTests") julia> using HypothesisTests ...Read now
Unlock full access