rectified_p_value | R Documentation |
Computes a rectified p-value.
rectified_p_value(
rectifier,
rectifier_std,
imputed_mean,
imputed_std,
null = 0,
alternative = "two-sided"
)
rectifier |
(float or vector): Rectifier value. |
rectifier_std |
(float or vector): Rectifier standard deviation. |
imputed_mean |
(float or vector): Imputed mean. |
imputed_std |
(float or vector): Imputed standard deviation. |
null |
(float, optional): Value of the null hypothesis to be tested.
Defaults to |
alternative |
(str, optional): Alternative hypothesis, either 'two-sided', 'larger' or 'smaller'. |
(float or vector): The rectified p-value.
rectifier <- 0.7
rectifier_std <- 0.5
imputed_mean <- 1.5
imputed_std <- 0.3
rectified_p_value(rectifier, rectifier_std, imputed_mean, imputed_std)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.