Skip to content

Commit

Permalink
Print at most 20 rows
Browse files Browse the repository at this point in the history
Closes #710
  • Loading branch information
hadley committed Nov 18, 2014
1 parent c16ccd2 commit b006f82
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions NEWS.md
@@ -1,5 +1,8 @@
# dplyr 0.3.1.9000

* dplyr now only prints up to 20 rows (i.e. options(dplyr.print_max) is now 20).
#710

* `rbind`ing a column full of `NA` is allowed and just collects the appropriate
missing value for the column type being collected (#493).

Expand Down
2 changes: 1 addition & 1 deletion R/zzz.r
Expand Up @@ -3,7 +3,7 @@
op.dplyr <- list(
dplyr.strict_sql = FALSE,
dplyr.print_min = 10L,
dplyr.print_max = 100L
dplyr.print_max = 20L
)
toset <- !(names(op.dplyr) %in% names(op))
if(any(toset)) options(op.dplyr[toset])
Expand Down

0 comments on commit b006f82

Please sign in to comment.