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

Update pkg.R #18

Open
wants to merge 2 commits 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
2 changes: 1 addition & 1 deletion R/pkg.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#'
#' R is a great tool, but processing large text files with data is cumbersome.
#' \code{chunked} helps you to process large text files with dplyr while loading
#' only a part of the data in memory. It builds on the execellent R package LaF
#' only a part of the data in memory. It builds on the excellent R package LaF
#' Processing commands are writing in dplyr syntax, and \code{chunked}
#' (using \code{LaF})
#' will take care that chunk by chunk is processed, taking far less memory
Expand Down
2 changes: 1 addition & 1 deletion R/write.R
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ write_table_chunkwise <- function(x, file="", sep="\t", dec=".", col.names=TRUE,
write_csv_chunkwise(x=x, file=file, sep=sep, dec=dec, col.names=col.names, row.names=row.names, ...)
}

#' Genereric function to write chunk by chunk
#' Generic function to write chunk by chunk
#' @export
#' @param x chunked input, e.g. created with \code{read_chunkwise} or it can be a \code{tbl_sql} object.
#' @param dest where should the data be written. May be a character or
Expand Down