diff options
author | Anil Tellbuescher <anil@tellbuescher.online> | 2025-01-11 13:38:07 +0100 |
---|---|---|
committer | Anil Tellbuescher <anil@tellbuescher.online> | 2025-01-11 13:38:07 +0100 |
commit | a2cc5039c5c4df712d2a80d0c5e87acb4b243616 (patch) | |
tree | 50455b3675ae4da62aab6901e44f85f730720281 | |
parent | ab87412a265039b58a59ad063def78b8aa8dfa31 (diff) |
import graphics::lines
-rw-r--r-- | NAMESPACE | 4 | ||||
-rw-r--r-- | R/linearity.R | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -11,12 +11,16 @@ S3method(loq,default) S3method(loq,lm) export(calplot) export(inverse.predict) +export(linearity) export(lod) export(loq) +importFrom(graphics,abline) importFrom(graphics,legend) +importFrom(graphics,lines) importFrom(graphics,matlines) importFrom(graphics,plot) importFrom(graphics,points) +importFrom(stats,median) importFrom(stats,optimize) importFrom(stats,predict) importFrom(stats,qt) diff --git a/R/linearity.R b/R/linearity.R index 759b288..8970fe7 100644 --- a/R/linearity.R +++ b/R/linearity.R @@ -29,6 +29,7 @@ #' @author Anil Axel Tellbüscher #' #' @importFrom graphics abline +#' @importFrom graphics lines #' @importFrom stats median #' #' @examples |