1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/plain_tweets.R
\name{plain_tweets}
\alias{plain_tweets}
\title{Clean up character vector (tweets) to more of a plain text.}
\usage{
plain_tweets(x)
}
\arguments{
\item{x}{The desired character vector or data frame/list with named column/element
"text" to be cleaned and processed.}
}
\value{
Data reformatted with ascii encoding and normal ampersands and
without URL links, line breaks, fancy spaces/tabs, fancy apostrophes,
}
\description{
Removes links, linebreaks, fancy spaces and apostrophes and convert everything to ASCII text.
Deprecated to be defunct for next release as there are better text processing tools.
}
|