std_max | R Documentation |
Max min standardization
coef standardization
std_max(x) std_min(x) coef_std(model)
x |
Numbers. |
model |
the result of lm function. |
Standardized data
Standardized coefficients and p_value.
std_max(1:10) std_min(1:10) set.seed(1) a1 <- runif(100) a2 <- a1*runif(100, .9,1.2)*100 a3 <- runif(100, .9,1.2)*10 md1 <- lm(a1 ~ a2 +a3) coef(md1) coef_std(md1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.