Nothing
#' Remove Rows That Contain Markers
#'
#' \code{filter_row} - Remove rows from a data set that contain a given marker/term.
#'
#' @param dataframe A dataframe object.
#' @param column Column name to search for markers/terms.
#' @param terms The regex terms/markers of the rows that are to be removed from
#' the dataframe.
#' @param \ldots Other arguments passed to \code{\link[base]{grepl}}.
#' @return \code{filter_row} - returns a dataframe with the termed/markered rows
#' removed.
#' @rdname filter_row
#' @export
#' @examples
#' \dontrun{
#' ## filter_row EXAMPLE:
#' filter_row(DATA, "person", c("sam", "greg"))
#' filter_row(DATA, 1, c("sam", "greg"))
#' filter_row(DATA, "state", c("Comp"))
#' filter_row(DATA, "state", c("I "))
#' filter_row(DATA, "state", c("you"), ignore.case=TRUE)
#'
#' ## filter_empty_row EXAMPLE:
#' (dat <- rbind.data.frame(DATA[, c(1, 4)], matrix(rep(" ", 4),
#' ncol =2, dimnames=list(12:13, colnames(DATA)[c(1, 4)]))))
#' filter_empty_row(dat)
#'
#' ## filter_NA EXAMPLE:
#' DATA[1:3, "state"] <- NA
#' filter_NA(DATA)
#' }
filter_row <- function(dataframe, column, terms, ...) {
warning(
paste(
"Deprecated, use textclean::drop_row() instead.",
"`filter_row()` will be removed in the next version."
),
call. = FALSE
)
terms <- paste(terms, collapse="|")
if (length(dataframe[[column]]) == 0) stop("No columns in the data appear to match supplied `column`")
dataframe <- dataframe[!grepl(terms, dataframe[[column]], perl=TRUE, ...), ]
rownames(dataframe) <- NULL
dataframe
}
#' Remove Empty Rows in a Data Frame
#'
#' \code{filter_empty_row} - Removes the empty rows of a data set that are common in
#' reading in data.
#'
#' @return \code{filter_empty_row} - returns a dataframe with empty rows removed.
#' @rdname filter_row
#' @export
filter_empty_row <- function(dataframe) {
warning(
paste(
"Deprecated, use textclean::drop_empty_row() instead.",
"`filter_empty_row()` will be removed in the next version."
),
call. = FALSE
)
x <- apply(dataframe, 1, function(x) paste(stats::na.omit(x), collapse = ""))
return(dataframe[!grepl("^\\s*$", x), ,drop = FALSE] )
}
#' Remove Empty Rows in a Data Frame
#'
#' \code{filter_NA} - Removes the \code{NA} rows of a data set.
#'
#' @return \code{filter_NA} - returns a dataframe with \code{NA} rows removed.
#' @rdname filter_row
#' @export
filter_NA <- function(dataframe, column = TRUE, ...){
warning(
paste(
"Deprecated, use textclean::drop_NA() instead.",
"`filter_NA()` will be removed in the next version."
),
call. = FALSE
)
column <- detect_text_column(dataframe, column)
dataframe[!is.na(dataframe[[column]]), ,drop = FALSE]
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.