All Projects → Wotipati → statisticalHypothesisTests

Wotipati / statisticalHypothesisTests

Licence: MIT license
統計的仮説検定&信頼区間推定用スクリプトまとめ

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to statisticalHypothesisTests

Git Quick Stats
▁▅▆▃▅ Git quick statistics is a simple and efficient way to access various statistics in git repository.
Stars: ✭ 5,139 (+26947.37%)
Mutual labels:  statistical-analysis
Methylkit
R package for DNA methylation analysis
Stars: ✭ 116 (+510.53%)
Mutual labels:  statistical-analysis
Scikit Posthocs
Multiple Pairwise Comparisons (Post Hoc) Tests in Python
Stars: ✭ 186 (+878.95%)
Mutual labels:  statistical-analysis
Pymc3
Probabilistic Programming in Python: Bayesian Modeling and Probabilistic Machine Learning with Aesara
Stars: ✭ 6,214 (+32605.26%)
Mutual labels:  statistical-analysis
Pycm
Multi-class confusion matrix library in Python
Stars: ✭ 1,076 (+5563.16%)
Mutual labels:  statistical-analysis
Gitinspector
📊 The statistical analysis tool for git repositories
Stars: ✭ 2,058 (+10731.58%)
Mutual labels:  statistical-analysis
Expan
Open-source Python library for statistical analysis of randomised control trials (A/B tests)
Stars: ✭ 275 (+1347.37%)
Mutual labels:  statistical-analysis
Miller
Miller is like awk, sed, cut, join, and sort for name-indexed data such as CSV, TSV, and tabular JSON
Stars: ✭ 4,633 (+24284.21%)
Mutual labels:  statistical-analysis
Ggstatsplot
Enhancing `ggplot2` plots with statistical analysis 📊🎨📣
Stars: ✭ 1,121 (+5800%)
Mutual labels:  statistical-analysis
Volbx
Graphical tool for data manipulation written in C++/Qt
Stars: ✭ 187 (+884.21%)
Mutual labels:  statistical-analysis
Dataframe
C++ DataFrame for statistical, Financial, and ML analysis -- in modern C++ using native types, continuous memory storage, and no pointers are involved
Stars: ✭ 828 (+4257.89%)
Mutual labels:  statistical-analysis
Uc Davis Cs Exams Analysis
📈 Regression and Classification with UC Davis student quiz data and exam data
Stars: ✭ 33 (+73.68%)
Mutual labels:  statistical-analysis
Data Science Toolkit
Collection of stats, modeling, and data science tools in Python and R.
Stars: ✭ 169 (+789.47%)
Mutual labels:  statistical-analysis
Python For Probability Statistics And Machine Learning
Jupyter Notebooks for Springer book "Python for Probability, Statistics, and Machine Learning"
Stars: ✭ 481 (+2431.58%)
Mutual labels:  statistical-analysis
Morpheus Core
The foundational library of the Morpheus data science framework
Stars: ✭ 203 (+968.42%)
Mutual labels:  statistical-analysis
Atsd Use Cases
Axibase Time Series Database: Usage Examples and Research Articles
Stars: ✭ 335 (+1663.16%)
Mutual labels:  statistical-analysis
Hdrhistogram rust
A port of HdrHistogram to Rust
Stars: ✭ 130 (+584.21%)
Mutual labels:  statistical-analysis
scCODA
A Bayesian model for compositional single-cell data analysis
Stars: ✭ 109 (+473.68%)
Mutual labels:  statistical-analysis
Tablesaw
Java dataframe and visualization library
Stars: ✭ 2,785 (+14557.89%)
Mutual labels:  statistical-analysis
Ee Outliers
Open-source framework to detect outliers in Elasticsearch events
Stars: ✭ 172 (+805.26%)
Mutual labels:  statistical-analysis

statisticalHypothesisTests

統計的仮説検定&信頼区間推定用スクリプト(Python)

scipy GitHub

Abstract

実験結果やアンケートの回答結果などのデータに対して、結果に有意差があるか数値的に検証する際に重要な、統計的仮説検定信頼区間推定を行うためのpythonスクリプトを実装しました。

多くの論文(特にHuman Computer Interaction分野)で使用されている代表的な手法(マン・ホイットニーのU検定やウィルコクソンの符号付き順位検定など)はほとんど実装してあるかと思います。


注意) これらのスクリプトは既存の統計システムを用いてチェックしたものですが、100%正しい保証はないです。実際に論文等で使用される際は,使用される方ご自身の責任において行っていただきますようお願いいたします。

私自身、論文で使用してたりするので、もしミスがあったら教えていただけるとホントに助かります。


統計的仮説検定 (Statistical Hypothesis Tests)

パラメトリック検定
(Parametric test)
ノンパラメトリック検定
(Non-parametric test)
対応なし2群
(Compare two unpaired groups)
対応なしt検定
(Unpaired t test)
マン・ホイットニーのU検定
(Mann-Whitney U test)
対応あり2群
(Compare two paired groups)
対応ありt検定
(Paired t test)
ウィルコクソンの符号付き順位検定
(Wilcoxon Signed-rank test)
対応なし他群
(Compare more than two unpaired groups)
分散分析
(ANOVA)
クラスカル・ウォリス検定
(Kruskal-Wallis test)
対応あり他群
(Compare more than two paired groups)
反復測定分散分析
(Repeated-measures ANOVA)
フリードマン検定
(Friedman test)

信頼区間の推定 (Confidence Interval Estimation)

その他(Notes)

Requirement

  • python3
  • scipy 0.19.1
  • pandas 0.20.3

Quita記事

pythonを用いた統計的仮説検定、信頼区間推定方法まとめ

References

License

MIT License, Seita Kayukawa (Wotipati)

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].