R/removeMissingEntry.R

##' This function filters data to remove missing entries.
##'
##' @param data The dataset
##'
##' @return A data table where flags with 'M' are removed.
##' @export
##'

removeMissingEntry = function(data){
    dataCopy = copy(data)
    dataCopy[!flagObservationStatus == "M", ]
}
SWS-Methodology/faoswsProcessing documentation built on June 19, 2019, 5:14 p.m.