| outlier_filter {ISAnalytics} | R Documentation |
Filter out outliers in metadata.
outlier_filter( metadata, outlier_test = "outliers_by_pool_fragments", negate = FALSE, ... )
metadata |
The metadata data frame |
outlier_test |
A string representing a function name. The name must be one of the available outlier tests, see available_outlier_tests. |
negate |
If TRUE will return only the metadata that was flagged to be removed. If FALSE will return only the metadata that wasn't flagged to be removed. |
... |
Additional named arguments passed to |
A data frame of metadata which has less or the same amount of rows
data("association_file", package = "ISAnalytics")
filtered_af <- outlier_filter(association_file,
key = "BARCODE_MUX",
report_path = NULL
)
head(filtered_af)