|
5 months ago | |
---|---|---|
spec | 5 months ago | |
src | 5 months ago | |
.editorconfig | 5 months ago | |
.gitignore | 5 months ago | |
.travis.yml | 5 months ago | |
LICENSE | 5 months ago | |
README.md | 5 months ago | |
shard.yml | 5 months ago |
A Crystal shard for making a chi square test
Add the dependency to your shard.yml
:
dependencies:
chi-squared:
github: cmiksche/chi-squared
Run shards install
require "chi-squared"
Look at the tests for good examples. E.g.
test = ChiSquared::Test.new([1,2,3], [2,3,3])
test.result.should eq(0.8333333333333333)
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)