https://github.com/hadley/dplyr
Raw File
Tip revision: eaa36559d29d868d7b2680ed147b8d8e37aad17f authored by hadley on 24 February 2014, 13:53:33 UTC
Don't run microbenchmark during tests for BDR
Tip revision: eaa3655
make_tbl.Rd
% Generated by roxygen2 (4.0.0): do not edit by hand
\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