All Projects → JuliaStats → Hypothesistests.jl

JuliaStats / Hypothesistests.jl

Licence: other
Hypothesis tests for Julia

Programming Languages

julia
2034 projects

Projects that are alternatives of or similar to Hypothesistests.jl

Arcchartview
Arc Chart View (Draw Creative Statistic Arc Charts)
Stars: ✭ 96 (-42.17%)
Mutual labels:  hacktoberfest, statistics
Plan
Player Analytics plugin for Minecraft Server platforms (Bukkit/Sponge/Nukkit/BungeeCord/Velocity) - View player activity of your server with ease. 📆
Stars: ✭ 322 (+93.98%)
Mutual labels:  hacktoberfest, statistics
Virgilio
Virgilio is developed and maintained by these awesome people. You can email us virgilio.datascience (at) gmail.com or join the Discord chat.
Stars: ✭ 13,200 (+7851.81%)
Mutual labels:  hacktoberfest, statistics
Git Stats
🍀 Local git statistics including GitHub-like contributions calendars.
Stars: ✭ 5,789 (+3387.35%)
Mutual labels:  hacktoberfest, statistics
Volume approximation
Practical volume computation and sampling in high dimensions
Stars: ✭ 75 (-54.82%)
Mutual labels:  hacktoberfest, statistics
Promcord
📊 Analyze your entire discord guild in grafana using prometheus. Message, User, Game and Voice statistics...
Stars: ✭ 39 (-76.51%)
Mutual labels:  hacktoberfest, statistics
Jasp Desktop
JASP aims to be a complete statistical package for both Bayesian and Frequentist statistical methods, that is easy to use and familiar to users of SPSS
Stars: ✭ 447 (+169.28%)
Mutual labels:  hacktoberfest, statistics
Pypistats
Command-line interface to PyPI Stats API to get download stats for Python packages
Stars: ✭ 86 (-48.19%)
Mutual labels:  hacktoberfest, statistics
Covid19stats
A simple mobile app developed with Flutter to visualize Covid19 statistics 🦠
Stars: ✭ 136 (-18.07%)
Mutual labels:  hacktoberfest, statistics
React Image Annotate
Create image annotations. Classify, tag images with polygons, bounding boxes or points.
Stars: ✭ 165 (-0.6%)
Mutual labels:  hacktoberfest
Micropad Core
µPad (MicroPad) is an open digital note taking app
Stars: ✭ 165 (-0.6%)
Mutual labels:  hacktoberfest
Consumerfinance.gov
Django project protecting American consumers
Stars: ✭ 164 (-1.2%)
Mutual labels:  hacktoberfest
Jenkins Zh
Jenkins 中文社区网站源码
Stars: ✭ 165 (-0.6%)
Mutual labels:  hacktoberfest
Sylius Standard
Open Source eCommerce Application on top of Symfony
Stars: ✭ 165 (-0.6%)
Mutual labels:  hacktoberfest
Polybar Spotify
🎵 Spotify status and controls module for Polybar with text scrolling
Stars: ✭ 162 (-2.41%)
Mutual labels:  hacktoberfest
Tari
The Tari protocol
Stars: ✭ 164 (-1.2%)
Mutual labels:  hacktoberfest
Supervisor
PHP library for managing Supervisor through XML-RPC API
Stars: ✭ 163 (-1.81%)
Mutual labels:  hacktoberfest
Image Png
PNG decoding and encoding library in pure Rust
Stars: ✭ 164 (-1.2%)
Mutual labels:  hacktoberfest
Gitinspector
📊 The statistical analysis tool for git repositories
Stars: ✭ 2,058 (+1139.76%)
Mutual labels:  statistics
Aulas
Aulas da Escola de Inteligência Artificial de São Paulo
Stars: ✭ 166 (+0%)
Mutual labels:  statistics

HypothesisTests.jl

HypothesisTests.jl is a Julia package that implements a wide range of hypothesis tests.

  • Build & Testing Status: Build Status Coverage Status

  • Documentation:

Quick start

Some examples:

using HypothesisTests

pvalue(OneSampleTTest(x))
pvalue(OneSampleTTest(x), tail=:left)
pvalue(OneSampleTTest(x), tail=:right)
confint(OneSampleTTest(x))
confint(OneSampleTTest(x, tail=:left))
confint(OneSampleTTest(x, tail=:right))
OneSampleTTest(x).t
OneSampleTTest(x).df

pvalue(OneSampleTTest(x, y))
pvalue(EqualVarianceTTest(x, y))
pvalue(UnequalVarianceTTest(x, y))

pvalue(MannWhitneyUTest(x, y))
pvalue(SignedRankTest(x, y))
pvalue(SignedRankTest(x))
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].