https://github.com/hadley/dplyr
Raw File
Tip revision: 8dbb0990790a49199dba8bb5a7463569798fe93d authored by Romain François on 30 January 2014, 00:45:21 UTC
bullet pojnts in NEWS
Tip revision: 8dbb099
make_tbl.Rd
\name{make_tbl}
\alias{make_tbl}
\title{Create a "tbl" object}
\usage{
make_tbl(subclass, ...)
}
\arguments{
  \item{subclass}{name of subclass. "tbl" is an abstract
  base class, so you must supply this value. \code{tbl_} is
  automatically prepended to the class name}

  \item{object}{to test/coerce.}

  \item{...}{For \code{tbl}, other fields used by class.
  For \code{as.tbl}, other arguments passed to methods.}
}
\description{
\code{tbl} is the standard constructor for tbls.
\code{as.tbl} coerces, and \code{is.tbl} tests.
}
\examples{
as.tbl(mtcars)
}
\keyword{internal}

back to top