Learn R Programming

rtext (version 0.1.22)

rtext_tokenize: R6 class - linking text and data

Description

R6 class - linking text and data

R6 class - linking text and data

Arguments

Value

Object of R6Class

Format

R6Class object.

Methods

Public methods

Method tokenize_data_regex()

Usage

rtext_tokenize$tokenize_data_regex(
  split = NULL,
  ignore.case = FALSE,
  fixed = FALSE,
  perl = FALSE,
  useBytes = FALSE,
  non_token = FALSE,
  join = c("full", "left", "right", ""),
  aggregate_function = NULL,
  ...
)

Method tokenize_data_sequences()

Usage

rtext_tokenize$tokenize_data_sequences(
  token,
  join = c("full", "left", "right", ""),
  aggregate_function = NULL,
  ...
)

Method tokenize_data_words()

Usage

rtext_tokenize$tokenize_data_words(
  split = "\\W+",
  ignore.case = FALSE,
  fixed = FALSE,
  perl = FALSE,
  useBytes = FALSE,
  non_token = FALSE,
  join = c("full", "left", "right", ""),
  aggregate_function = NULL,
  ...
)

Method tokenize_data_lines()

Usage

rtext_tokenize$tokenize_data_lines(
  split = "\n",
  ignore.case = FALSE,
  fixed = FALSE,
  perl = FALSE,
  useBytes = FALSE,
  non_token = FALSE,
  join = c("full", "left", "right", ""),
  aggregate_function = NULL,
  ...
)

Method clone()

The objects of this class are cloneable with this method.

Usage

rtext_tokenize$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

See Also

rtext