Skip to content

Commit f586a6f

Browse files
Add comprehensive biomedical statistical tests with visualizations
Features: - Comprehensive T-Tests (one-sample, two-sample, paired, Welch's) with clinical examples - Chi-Square Tests (goodness of fit, independence, McNemar's) with medical applications - Correlation Analysis (Pearson, Spearman, Kendall, matrix analysis) with assumption checks - Professional visualizations for all tests with statistical annotations - Power analysis and sample size considerations for study design - Real-world biomedical examples and interpretations Files added: - biomedical/t_tests_comprehensive.r (800+ lines) - biomedical/chi_square_tests.r (700+ lines) - biomedical/correlation_analysis.r (600+ lines) - Updated DIRECTORY.md with new biomedical tests Testing: - All functions tested with and without plotting - Comprehensive error handling and input validation - Educational demonstrations with clinical scenarios - No external package dependencies (pure base R)
1 parent f4b992a commit f586a6f

File tree

5 files changed

+2158
-0
lines changed

5 files changed

+2158
-0
lines changed

DIRECTORY.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33
* [Apriori](https://github.com/TheAlgorithms/R/blob/HEAD/association_algorithms/apriori.r)
44

55
## Biomedical
6+
* [Chi Square Tests](https://github.com/TheAlgorithms/R/blob/HEAD/biomedical/chi_square_tests.r)
7+
* [Correlation Analysis](https://github.com/TheAlgorithms/R/blob/HEAD/biomedical/correlation_analysis.r)
68
* [Mann Whitney U Test](https://github.com/TheAlgorithms/R/blob/HEAD/biomedical/mann_whitney_u_test.r)
9+
* [T Tests Comprehensive](https://github.com/TheAlgorithms/R/blob/HEAD/biomedical/t_tests_comprehensive.r)
710
* [Wilcoxon Signed Rank Test](https://github.com/TheAlgorithms/R/blob/HEAD/biomedical/wilcoxon_signed_rank_test.r)
811

912
## Classification Algorithms

biomedical/Rplots.pdf

8.18 KB
Binary file not shown.

0 commit comments

Comments
 (0)