https://github.com/hadley/dplyr
Raw File
Tip revision: ed5ccb805a299ce3fc04b012f910447295ed3727 authored by Kirill Müller on 02 March 2016, 11:33:54 UTC
Merge branch 'release/0.1-6' into production
Tip revision: ed5ccb8
README.Rmd
---
output:
  md_document:
    variant: markdown_github
---

<!-- README.md is generated from README.Rmd. Please edit that file -->

```{r, echo = FALSE}
knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "README-"
)
```

# tibble [![Build Status](https://travis-ci.org/krlmlr/tibble.svg?branch=master)](https://travis-ci.org/krlmlr/tibble) [![Coverage Status](https://img.shields.io/codecov/c/github/krlmlr/tibble/master.svg)](https://codecov.io/github/krlmlr/tibble?branch=master)

Data frames in `dplyr` style.

```{r}
tibble::tbl_df(iris)
```
back to top