Test for incomplete sentences and optionally remove them.
end_inc(dataframe, text.var, warning.report = TRUE, which.mode = FALSE)
A dataframe that contains the person and text variable.
A character string of the text variable.
logical. If TRUE
prints a warning of regarding
removal of incomplete sentences.
logical. If TRUE
outputs two logical vectors: `NOT`
(logical test of not being an incomplete sentence) and `INC` (logical test of
being an incomplete sentence)
Generates a dataframe with incomplete sentences removed.
# NOT RUN {
dat <- sentSplit(DATA, "state", stem.col = FALSE)
dat$state[c(2, 5)] <- paste(strip(dat$state[c(2, 5)]), "|")
end_inc(dat, "state")
end_inc(dat, "state", warning.report = FALSE)
end_inc(dat, "state", which.mode = TRUE)
# }
Run the code above in your browser using DataLab