powered by
Create content transformers, i.e., functions which modify the content of an R object.
content_transformer(FUN)
A function with two arguments:
x
an R object with implemented content getter (content) and setter (content<-) functions.
content
content<-
...
arguments passed over to FUN.
FUN
a function.
tm_map for an interface to apply transformations to corpora.
tm_map
data("crude") crude[[1]] (f <- content_transformer(function(x, pattern) gsub(pattern, "", x))) tm_map(crude, f, "[[:digit:]]+")[[1]]
Run the code above in your browser using DataLab