qcv(..., terms = NULL, space.wrap = FALSE, trailing = FALSE, leading = FALSE, split = " ", rm.blank = TRUE)
TRUE
wraps the vector of terms with a
leading/trailing space.TRUE
wraps the vector of terms with a
trailing space.TRUE
wraps the vector of terms with a
leading space.terms
.TRUE
removes all blank spaces from the
vector.terms
argument must
be utilized.Returns a character vector.
Create a character vector without the use of quotation marks.
## <strong>Not run</strong>: # qcv(I, like, dogs) # qcv(terms = "I, like, dogs") #default separator is " " # qcv(terms = "I, like, dogs", split = ",") # qcv(terms = "I like dogs") # qcv(I, like, dogs, space.wrap = TRUE) # qcv(I, like, dogs, trailing = TRUE) # qcv(I, like, dogs, leading = TRUE) # exclude(Top25Words, qcv(the, of, and)) # qcv(terms = "mpg cyl disp hp drat wt qsec vs am gear carb") # ## <strong>End(Not run)</strong>
c