https://github.com/hadley/dplyr
Raw File
Tip revision: f0a55d6b1248e31230694ebbbcfa0e58d024e49a authored by Kirill Müller on 02 March 2016, 12:41:45 UTC
Merge branch 'release/0.2' into production
Tip revision: f0a55d6
frame_data.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/frame-data.R
\name{frame_data}
\alias{frame_data}
\alias{tibble}
\title{Row-wise data_frame creation}
\usage{
frame_data(...)

tibble(...)
}
\arguments{
\item{...}{Arguments specifying the structure of a \code{data_frame}.}
}
\description{
Create a row-wise \code{\link{data_frame}}.
}
\examples{
frame_data(
  ~colA, ~colB,
  "a",   1,
  "b",   2,
  "c",   3
)
}

back to top