1\name{twListToDF}
2\alias{twListToDF}
3\title{
4A function to convert twitteR lists to data.frames
5}
6\description{
7This function will take a list of objects from a single twitteR class and return a data.frame
8version of the members
9}
10\usage{
11twListToDF(twList)
12}
13\arguments{
14  \item{twList}{A list of objects of a single twitteR class, restrictions are listed in \code{details}}
15}
16\details{
17  The classes supported by this function are \code{\link{status}}, \code{\link{user}},
18  and \code{\link{directMessage}}.
19}
20\value{
21A \code{\link{data.frame}} with rows corresponding to the objects in the list and columns being the
22fields of the class
23}
24\author{
25Jeff Gentry
26}
27\seealso{
28\code{\link{status}}, \code{\link{user}}, \code{\link{directMessage}}
29}
30\examples{
31  \dontrun{
32    zz <- searchTwitter("#rstats")
33    twListToDF(zz)
34  }
35}
36\keyword{ interface }
37