1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! # Student T Tests
//!
//! The `t` module provides functionality for performing Student's t-tests.
//!
//! T-tests are statistical tests used to determine if there is a significant difference
//! between sample means. They are often used when the population standard deviation is unknown.
//!
//! ## Sample Size Calculation
//!
//! To calculate the required sample size for t-tests, you can use the following function:
//! - `t_sample_size`: Calculates the necessary sample size for one-sample t-tests based on effect size, alpha, power, and standard deviation.
//!
//! ## Submodules
//!
//! - `one_sample`: Contains functions for performing one-sample t-tests.
//! - `two_sample`: Contains functions for performing paired and independent two-sample t-tests.
//!
//! ## Exports
//!
//! The following functions are made available for use:
//!
//! - `t_test`: Performs a one-sample t-test.
//! - `t_test_ind`: Performs an independent two-sample t-test.
//! - `t_test_paired`: Performs a paired two-sample t-test.
//! - `t_sample_size`: Calculates the required sample size for one-sample t-tests.
//!
//! ## Example
//! ```rust
//! use hypors::t::{t_test, t_test_ind, t_test_paired, t_sample_size};
//! ```
pub use t_test;
pub use t_sample_size;
pub use ;