summaryrefslogtreecommitdiff
path: root/R/preprocess.R
diff options
context:
space:
mode:
Diffstat (limited to 'R/preprocess.R')
-rw-r--r--R/preprocess.R9
1 files changed, 6 insertions, 3 deletions
diff --git a/R/preprocess.R b/R/preprocess.R
index c8435db..7bdada3 100644
--- a/R/preprocess.R
+++ b/R/preprocess.R
@@ -114,16 +114,19 @@ trInfo <- function(InputOffset=numeric(0),OutputOffset=numeric(0),
#' summary(cstr_mis) # finding out the number of NAs
#' cstr <- misdata(cstr_mis)
#'
-#' @importFrom zoo na.approx
#' @export
misdata <- function(data){
+ if (!requireNamespace("zoo", quietly = TRUE)) {
+ stop("Package zoo needed for this function to work. Please install it.",
+ call. = FALSE)
+ }
f <- function(var,start,end,Ts){
time_range <- range(time(var))
start <- time_range[1];end <- time_range[2]
- Ts <- deltat(var)
+ Ts <- stats::deltat(var)
var <- ts(data=var,start=start,end=end,deltat=Ts)
- out <- na.approx(var,na.rm=F)
+ out <- zoo::na.approx(var,na.rm=F)
return(as.numeric(out))
}