https://github.com/hadley/dplyr
Raw File
Tip revision: cc7eb62319c88ab48a63d7aa7a8f75fc4fcdf876 authored by hadley on 17 January 2014, 13:26:15 UTC
Update readme and notes for CRAN release
Tip revision: cc7eb62
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