Skip to content

Commit fb25590

Browse files
committed
updating documentation issue
1 parent 9aee7f0 commit fb25590

File tree

7 files changed

+25
-6
lines changed

7 files changed

+25
-6
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: chunked
22
Type: Package
33
Title: Chunkwise Text-File Processing for 'dplyr'
4-
Version: 0.6.0
4+
Version: 0.6.1
55
Authors@R: c(person("Edwin", "de Jonge", email="edwindjonge@gmail.com", role=c("aut","cre"), comment = c(ORCID = "0000-0002-6580-4718")))
66
Description: Data stored in text file can be processed chunkwise using 'dplyr' commands. These
77
are recorded and executed per data chunk, so large files can be processed with
@@ -22,5 +22,5 @@ Suggests:
2222
testthat,
2323
RSQLite,
2424
dbplyr
25-
RoxygenNote: 7.1.1
25+
RoxygenNote: 7.3.3
2626
Encoding: UTF-8

NAMESPACE

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ S3method(as.data.frame,chunkwise)
66
S3method(collect,chunkwise)
77
S3method(do,chunkwise)
88
S3method(filter,chunkwise)
9+
S3method(full_join,chunkwise)
910
S3method(group_by,chunkwise)
1011
S3method(group_keys,chunkwise)
1112
S3method(group_modify,chunkwise)
13+
S3method(group_size,chunkwise)
1214
S3method(group_split,chunkwise)
1315
S3method(group_vars,chunkwise)
1416
S3method(groups,chunkwise)
@@ -21,6 +23,7 @@ S3method(read_chunkwise,character)
2123
S3method(read_chunkwise,laf)
2224
S3method(read_chunkwise,tbl_sql)
2325
S3method(rename,chunkwise)
26+
S3method(right_join,chunkwise)
2427
S3method(select,chunkwise)
2528
S3method(semi_join,chunkwise)
2629
S3method(summarise,chunkwise)

R/insert_chunk_into.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#' @param table name of table
1010
#' @param temporary Should the table be removed when the database connection is closed?
1111
#' @param analyze Should the table be analyzed after import?
12-
#' @return a \code{\link{tbl}} object pointing to the table in database \code{dest}.
12+
#' @return a \code{\link[dplyr]{tbl}} object pointing to the table in database \code{dest}.
1313
insert_chunkwise_into <- function(x, dest, table, temporary = FALSE, analyze = FALSE){
1414
cmds <- x$cmds
1515
df <- x$first_chunk(cmds)

R/pkg.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@
4545
#' @docType package
4646
#' @name chunked-package
4747
#' @aliases select filter mutate dplyr-verbs
48-
NULL
48+
"_PACKAGE"

R/unsupported.R

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,19 @@ tail.chunkwise <- function(x, n = 6L, ...){
1111
stop("'tail' is not supported by chunked sources", call.=FALSE)
1212
}
1313

14+
#' @export
1415
right_join.chunkwise <- function(x,y,by=NULL, copy=FALSE, ...){
1516
stop("'right_join' is not supported on a chunked text file, because data is processed chunk by chunk."
1617
, call. = FALSE)
1718
}
1819

20+
#' @export
1921
full_join.chunkwise <- function(x,y,by=NULL, copy=FALSE, ...){
2022
stop("'full_join' is not supported on a chunked text file, because data is processed chunk by chunk."
2123
, call. = FALSE)
2224
}
2325

26+
#' @export
2427
group_size.chunkwise <- function(x){
2528
stop("'group_size' is not supported on a chunked text file, because data is processed chunk by chunk."
2629
, call. = FALSE)

man/chunked-package.Rd

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/insert_chunkwise_into.Rd

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)