This class is responsible of detecting the existing use names in the
data field of each Instance
. Identified user names are
stored inside the userName field of Instance
class.
Moreover if required, is able to perform inline user name removement.
This class inherits from GenericPipe
and implements the
pipe
abstract function.
bdpar::GenericPipe
-> FindUserNamePipe
userPattern
A character
value. The regular
expression to detect name users.
new()
Creates a FindEmoticonPipe
object.
FindUserNamePipe$new(
propertyName = "userName",
alwaysBeforeDeps = list(),
notAfterDeps = list(),
removeUser = TRUE
)
propertyName
A character
value. Name of the property
associated with the GenericPipe
.
alwaysBeforeDeps
A list
value. The dependencies
alwaysBefore (GenericPipes
that must be executed before
this one).
notAfterDeps
A list
value. The dependencies
notAfter (GenericPipes
that cannot be executed after
this one).
removeUser
A logical
value. Indicates if the
name users are removed.
propertyLanguageName
A character
value. Name of the
language property.
pipe()
Preprocesses the Instance
to obtain/remove
the name users. The emoticons found in the data are added to the
list of properties of the Instance
.
FindUserNamePipe$pipe(instance)
instance
A Instance
value. The Instance
to preprocess.
The Instance
with the modifications that have
occurred in the pipe.
findUserName()
Finds the name users in the data.
FindUserNamePipe$findUserName(data)
data
A character
value. The text to search the
name users.
The list
with name users found.
removeUserName()
Removes the name users in the data.
FindUserNamePipe$removeUserName(data)
data
A character
value. The text where name users
will be removed.
The data with the name users removed.
clone()
The objects of this class are cloneable with this method.
FindUserNamePipe$clone(deep = FALSE)
deep
Whether to make a deep clone.
The regular expressions indicated in the userPattern
variable are used to identify user names.
AbbreviationPipe
, ContractionPipe
,
File2Pipe
, FindEmojiPipe
,
FindEmoticonPipe
, FindHashtagPipe
,
FindUrlPipe
, GuessDatePipe
,
GuessLanguagePipe
, Instance
,
InterjectionPipe
, MeasureLengthPipe
,
GenericPipe
, SlangPipe
,
StopWordPipe
, StoreFileExtPipe
,
TargetAssigningPipe
, TeeCSVPipe
,
ToLowerCasePipe