Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

import trunc_mat() from tibble:: #21

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ Description: Data stored in text file can be processed chunkwise using 'dplyr' c
are recorded and executed per data chunk, so large files can be processed with
limited memory using the 'LaF' package.
License: GPL-2
LazyData: TRUE
BugReports: https://github.com/edwindj/chunked/issues
URL: https://github.com/edwindj/chunked
Depends:
Expand All @@ -17,10 +16,11 @@ Imports:
utils,
rlang,
DBI,
progress
progress,
tibble
Suggests:
testthat,
RSQLite,
dbplyr
RoxygenNote: 7.1.1
RoxygenNote: 7.1.2
Encoding: UTF-8
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,6 @@ export(write_csv_chunkwise)
export(write_table_chunkwise)
import(dplyr)
import(rlang)
importFrom(tibble,trunc_mat)
importFrom(utils,head)
importFrom(utils,tail)
1 change: 1 addition & 0 deletions R/print.R
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#' @importFrom tibble trunc_mat
#' @export
print.chunkwise <- function(x, n=NULL, width=NULL, ...){
h <- if (is.null(n)) head.chunkwise(x) else head.chunkwise(x,n)
Expand Down