Learn R Programming

text (version 1.4)

textClean: Cleans text from standard personal information

Description

The text is being cleaned from information that may identify them; however, note that this is not a guarantee for anonymization.

Usage

textClean(
  text,
  replace = TRUE,
  date = TRUE,
  time = TRUE,
  phone = TRUE,
  email = TRUE,
  ip = TRUE,
  money = TRUE,
  creditcard = TRUE,
  bitcoin = TRUE,
  location = TRUE,
  ssn = TRUE,
  at_symbol = TRUE,
  url = TRUE
)

Value

Text cleaned from typical personal identifiable information

Arguments

text

(character) The text to be cleaned.

replace

(boolean)

date

(boolean)

time

(boolean)

phone

(boolean)

email

(boolean)

ip

(boolean)

money

(boolean)

creditcard

(boolean)

bitcoin

(boolean)

location

(boolean)

ssn

(boolean)

at_symbol

(boolean)

url

(boolean)