rtext_tokenize: R6 class - linking text and data

Description Format Value Super classes Methods See Also

Description

R6 class - linking text and data

R6 class - linking text and data

Format

R6Class object.

Value

Object of R6Class

Super classes

rtext::R6_rtext_extended -> rtext::rtext_base -> rtext::rtext_loadsave -> rtext::rtext_export -> rtext_tokenize

Methods

Public methods

Inherited 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


rtext documentation built on Jan. 28, 2021, 9:05 a.m.

Related to rtext_tokenize in rtext...