View source: R/fuzzy_inference.R
compute_p_values | R Documentation |
Compute p-values for regression coefficients
compute_p_values(t_values, df)
t_values |
Numeric vector. T-values for regression coefficients. |
df |
Integer. Degrees of freedom. |
Numeric vector of p-values for each coefficient.
t_values <- c(2.5, 3.0) # Example t-values
df <- 30 # Example degrees of freedom
p_values <- compute_p_values(t_values, df)
print(p_values)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.