Description Usage Arguments Value Examples
View source: R/get_linear_slope.R
Get the linear slope when passing the significance test
1 | get_linear_slope(obj, sig, fill = NA)
|
obj |
A |
sig |
Numeric. The significance level for testing. If not asigned, pass the test. |
fill |
Numeric. The value used when not passing the significance test |
If the model is significant return the linear slope, else NA
.
1 2 3 4 5 6 7 8 9 10 11 | ## Not run:
ctl <- c(4.17,5.58,5.18,6.11,4.50,4.61,5.17,4.53,5.33,5.14)
trt <- c(4.81,4.17,4.41,3.59,5.87,3.83,6.03,4.89,4.32,4.69)
group <- gl(2, 10, 20, labels = c("Ctl","Trt"))
weight <- c(ctl, trt)
lm_obj <- lm(weight ~ group)
lm_obj2 <- lm(weight ~ group - 1)
get_linear_slope(lm_obj, 0.05)
get_linear_slope(lm_obj2, 0.05)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.