1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/save_as_csv.R
\name{flatten}
\alias{flatten}
\alias{unflatten}
\title{flatten/unflatten data frame}
\usage{
flatten(x)
unflatten(x)
}
\arguments{
\item{x}{Data frame with list columns or converted-to-character (flattened)
columns.}
}
\value{
If flattened, then data frame where non-recursive list
columns---that is, list columns that contain only atomic, or non-list,
elements---have been converted to character vectors. If unflattened,
this function splits on spaces columns originally returned as lists
by functions in rtweet package. See details for more information.
}
\description{
Converts list columns that containing all atomic elements into
character vectors and vice versa (for appropriate named variables
according to the rtweet package)
}
\details{
If recursive list columns are contained within the data frame,
relevant columns will still be converted to atomic types but output
will also be accompanied with a warning message.
\code{flatten} flattens list columns by pasting them into a single string for
each observations. For example, a tweet that mentions four other users,
for the mentions_user_id variable, it will include the four user IDs
separated by a space.
`unflatten`` splits on spaces to convert into list columns any
columns with the following names: hashtags, symbols, urls_url,
urls_t.co, urls_expanded_url, media_url, media_t.co,
media_expanded_url, media_type, ext_media_url, ext_media_t.co,
ext_media_expanded_url, mentions_user_id, mentions_screen_name,
geo_coords, coords_coords, bbox_coords, mentions_screen_name
}
\seealso{
Other datafiles:
\code{\link{read_twitter_csv}()},
\code{\link{write_as_csv}()}
Other datafiles:
\code{\link{read_twitter_csv}()},
\code{\link{write_as_csv}()}
}
\concept{datafiles}
|