rm_long_words: Delete rows in a text.table where the word has more than a...

Description Usage Arguments Value Examples

View source: R/text.table.R

Description

Delete rows in a text.table where the word has more than a minimum number of characters

Usage

1
rm_long_words(x, text, max_char_length)

Arguments

x

A text.table created by as.text.table().

text

A string, the name of the column in x used to determine deletion of rows based on the number of characters.

max_char_length

A number, the maximum number of characters allowed to not delete a row.

Value

A text.table, with rows having more than a certain number of characters deleted.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
rm_long_words(
as.text.table(
  x = as.data.table(
    list(
      col1 = c(
        "a",
        "b"
      ),
      col2 = c(
        tolower("The dog is nice because it picked up the newspaper."),
        tolower("The dog is extremely nice because it does the dishes.")
      )
    )
  ),
  text = "col2",
  split = " "
),
text = "col2",
max_char_length = 4
)

textTools documentation built on Feb. 5, 2021, 5:07 p.m.