Skip to content

Commit

Permalink
in tidyverse now
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Oct 1, 2016
1 parent 6d2bb08 commit bcfaca0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Expand Up @@ -10,8 +10,8 @@ Authors@R: c(
person("Kirill", "Müller", , "krlmlr+r@mailbox.org", c("aut", "cre")),
person("RStudio", role = "cph")
)
URL: https://github.com/hadley/tibble
BugReports: https://github.com/hadley/tibble/issues
URL: https://github.com/tidyverse/tibble
BugReports: https://github.com/tidyverse/tibble/issues
Depends: R (>= 3.1.2)
Imports:
methods,
Expand Down
8 changes: 4 additions & 4 deletions README.Rmd
Expand Up @@ -16,9 +16,9 @@ knitr::opts_chunk$set(

# tibble

[![Build Status](https://travis-ci.org/hadley/tibble.svg?branch=master)](https://travis-ci.org/hadley/tibble)
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/hadley/tibble?branch=master&svg=true)](https://ci.appveyor.com/project/hadley/tibble)
[![Coverage Status](https://img.shields.io/codecov/c/github/hadley/tibble/master.svg)](https://codecov.io/github/hadley/tibble?branch=master)
[![Build Status](https://travis-ci.org/tidyverse/tibble.svg?branch=master)](https://travis-ci.org/tidyverse/tibble)
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/tidyverse/tibble?branch=master&svg=true)](https://ci.appveyor.com/project/tidyverse/tibble)
[![Coverage Status](https://img.shields.io/codecov/c/github/tidyverse/tibble/master.svg)](https://codecov.io/github/tidyverse/tibble?branch=master)
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/tibble)](https://cran.r-project.org/package=tibble)

tibble implements a modern reimagining of the data.frame, keeping what time has proven to be effective, and throwing out what is not. It extracts these basic ideas out of [dplyr](https://cran.r-project.org/package=dplyr), which is now more clearly focused on data manipulation. tibble provides a lighter-weight package for the basic care and feeding of `tbl_df`'s, aka "tibble diffs" or just "tibbles". Tibbles are data.frames with nicer behavior around printing, subsetting, and factor handling.
Expand Down Expand Up @@ -95,5 +95,5 @@ You can try out the dev version with:

```{r eval = FALSE}
# install.packages("devtools")
devtools::install_github("hadley/tibble")
devtools::install_github("tidyverse/tibble")
```
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -3,7 +3,7 @@
tibble
======

[![Build Status](https://travis-ci.org/hadley/tibble.svg?branch=master)](https://travis-ci.org/hadley/tibble) [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/hadley/tibble?branch=master&svg=true)](https://ci.appveyor.com/project/hadley/tibble) [![Coverage Status](https://img.shields.io/codecov/c/github/hadley/tibble/master.svg)](https://codecov.io/github/hadley/tibble?branch=master) [![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/tibble)](https://cran.r-project.org/package=tibble)
[![Build Status](https://travis-ci.org/tidyverse/tibble.svg?branch=master)](https://travis-ci.org/tidyverse/tibble) [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/tidyverse/tibble?branch=master&svg=true)](https://ci.appveyor.com/project/tidyverse/tibble) [![Coverage Status](https://img.shields.io/codecov/c/github/tidyverse/tibble/master.svg)](https://codecov.io/github/tidyverse/tibble?branch=master) [![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/tibble)](https://cran.r-project.org/package=tibble)

tibble implements a modern reimagining of the data.frame, keeping what time has proven to be effective, and throwing out what is not. It extracts these basic ideas out of [dplyr](https://cran.r-project.org/package=dplyr), which is now more clearly focused on data manipulation. tibble provides a lighter-weight package for the basic care and feeding of `tbl_df`'s, aka "tibble diffs" or just "tibbles". Tibbles are data.frames with nicer behavior around printing, subsetting, and factor handling.

Expand Down Expand Up @@ -132,5 +132,5 @@ You can try out the dev version with:

``` r
# install.packages("devtools")
devtools::install_github("hadley/tibble")
devtools::install_github("tidyverse/tibble")
```
2 changes: 1 addition & 1 deletion revdep/README.md
Expand Up @@ -24,7 +24,7 @@
|Rcpp | |0.12.6 |2016-07-19 |cran (@0.12.6) |
|rmarkdown | |1.0 |2016-07-08 |cran (@1.0) |
|testthat | |1.0.2 |2016-04-23 |cran (@1.0.2) |
|tibble | |1.1-8 |2016-08-19 |local (hadley/tibble@NA) |
|tibble | |1.1-8 |2016-08-19 |local (tidyverse/tibble@NA) |
|withr | |1.0.2 |2016-06-20 |cran (@1.0.2) |

# Check results
Expand Down
2 changes: 1 addition & 1 deletion revdep/problems.md
Expand Up @@ -24,7 +24,7 @@
|Rcpp | |0.12.6 |2016-07-19 |cran (@0.12.6) |
|rmarkdown | |1.0 |2016-07-08 |cran (@1.0) |
|testthat | |1.0.2 |2016-04-23 |cran (@1.0.2) |
|tibble | |1.1-8 |2016-08-19 |local (hadley/tibble@NA) |
|tibble | |1.1-8 |2016-08-19 |local (tidyverse/tibble@NA) |
|withr | |1.0.2 |2016-06-20 |cran (@1.0.2) |

# Check results
Expand Down

0 comments on commit bcfaca0

Please sign in to comment.