get_linear_slope: Get the linear slope when passing the significance test

Description Usage Arguments Value Examples

View source: R/get_linear_slope.R

Description

Get the linear slope when passing the significance test

Usage

1
get_linear_slope(obj, sig, fill = NA)

Arguments

obj

A lm object.

sig

Numeric. The significance level for testing. If not asigned, pass the test.

fill

Numeric. The value used when not passing the significance test

Value

If the model is significant return the linear slope, else NA.

Examples

 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)

hxfan1227/scitools documentation built on Nov. 4, 2019, 1:51 p.m.