Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 360 Bytes

errors.md

File metadata and controls

17 lines (14 loc) · 360 Bytes
library(errors)

set_errors(1:3, 0.1)
#> Errors: 0.1 0.1 0.1
#> [1] 1 2 3
set_errors(60, 1) * set_errors(5, 0.2)
#> 300(10)
options(errors.notation="plus-minus")
set_errors(50, 3) / set_errors(9.81, 0.045)
#> 5.1 ± 0.3

set_errors(NA, 0.3)
#> NA ± NA

Created on 2021-03-14 by the reprex package (v1.0.0)