Description Usage Arguments Value See Also Examples
View source: R/replace_contraction.R
This function replaces contractions with long form.
1 2 3 4 5 6 7 | replace_contraction(
text.var,
contraction = qdapDictionaries::contractions,
replace = NULL,
ignore.case = TRUE,
sent.cap = TRUE
)
|
text.var |
The text variable. |
contraction |
A two column key of contractions (column 1) and expanded
form replacements (column 2) or a vector of contractions. Default is to use
qdapDictionaries's |
replace |
A vector of expanded form replacements if a data frame is not supplied to the contraction argument. |
ignore.case |
logical. If |
sent.cap |
logical. If |
Returns a vector with contractions replaced.
bracketX
,
qprep
,
replace_abbreviation
,
replace_number
,
replace_symbol
1 2 3 4 5 6 7 8 9 10 | ## Not run:
x <- c("Mr. Jones isn't going.",
"Check it out what's going on.",
"He's here but didn't go.",
"the robot at t.s. wasn't nice",
"he'd like it if i'd go away")
replace_contraction(x)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.