-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- `[[.tbl_df()` now falls back to regular subsetting when used with anything other than a single string (#29). - When used in list-columns, S4 objects only print the class name rather than the full class hierarchy (#33). - Further cleanup for `repair_names()`. - Add test that `[.tbl_df()` does not change class (#41, @jennybc).
- Loading branch information
Showing
2 changed files
with
19 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,20 @@ | ||
Package: tibble | ||
Encoding: UTF-8 | ||
Version: 0.3-2 | ||
Version: 0.3-3 | ||
Title: Simple Data Frames | ||
Description: Provides a 'tbl_df' class that offers better checking and | ||
printing capabilities than traditional data frames. | ||
Authors@R: c( | ||
person("Hadley", "Wickham", , "[email protected]", "aut"), | ||
person("Romain", "Francois", , "[email protected]", "aut"), | ||
person("Kirill", "Müller", , "[email protected]", c("aut", "cre")), | ||
person("RStudio", role = "cph") | ||
) | ||
printing capabilities than traditional data frames. | ||
Authors@R: c( person("Hadley", "Wickham", , "[email protected]", | ||
"aut"), person("Romain", "Francois", , | ||
"[email protected]", "aut"), person("Kirill", "Müller", | ||
, "[email protected]", c("aut", "cre")), person("RStudio", | ||
role = "cph") ) | ||
URL: https://github.com/krlmlr/tibble | ||
BugReports: https://github.com/krlmlr/tibble/issues | ||
Depends: R (>= 3.1.2) | ||
Imports: | ||
methods, | ||
assertthat, | ||
utils, | ||
lazyeval (>= 0.1.10), | ||
Rcpp | ||
Suggests: | ||
testthat, | ||
knitr, | ||
rmarkdown, | ||
Lahman (>= 3.0.1), | ||
magrittr, | ||
microbenchmark | ||
Imports: methods, assertthat, utils, lazyeval (>= 0.1.10), Rcpp | ||
Suggests: testthat, knitr, rmarkdown, Lahman (>= 3.0.1), magrittr, | ||
microbenchmark | ||
LinkingTo: Rcpp | ||
LazyData: yes | ||
License: MIT + file LICENSE | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters