Skip to content

Commit

Permalink
fix image size issue
Browse files Browse the repository at this point in the history
rebuild and recheck
  • Loading branch information
JohnMount committed Nov 1, 2019
1 parent ca0dfc6 commit 5d855fd
Show file tree
Hide file tree
Showing 79 changed files with 1,601 additions and 5,654 deletions.
2 changes: 2 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@
^logs$
^articles$
^LICENSE$
^doc$
^Meta$
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@ revdep
spark-warehouse
logs
CRAN-RELEASE
doc
Meta
10 changes: 4 additions & 6 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: replyr
Type: Package
Title: Patches to Use 'dplyr' on Remote Data Sources
Version: 1.0.4
Date: 2019-07-24
Version: 1.0.5
Date: 2019-11-01
Authors@R: c(
person("John", "Mount", email = "[email protected]", role = c("aut", "cre")),
person("Nina", "Zumel", email = "[email protected]", role = c("aut")),
Expand All @@ -15,14 +15,14 @@ Description: Patches to use 'dplyr' on remote data sources ('SQL' databases,
'Spark' 2.0.0 and above) in a reliable "generic" fashion (generic meaning
user code works similarly on all such sources, without needing per-source
adaption). Due to the fluctuating nature of 'dplyr'/'dbplyr'/'rlang' 'APIs' this package
is going into maintenance mode. Most of the 'replyr' functions are already
is going into maintenance mode. Most of the 'replyr' functions are now
done better by one of the non-monolithic replacement packages: 'wrapr', 'seplyr', 'rquery',
or 'cdata'.
License: GPL-2 | GPL-3
LazyData: TRUE
Depends:
R (>= 3.4.0),
wrapr (>= 1.8.8)
wrapr (>= 1.9.2)
Imports:
dplyr (>= 0.7.0),
rlang (>= 0.2.0),
Expand All @@ -35,8 +35,6 @@ Suggests: testthat,
sparklyr,
igraph,
DiagrammeR,
htmlwidgets,
webshot,
RSQLite
VignetteBuilder: knitr
ByteCompile: true
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@

# replyr 1.0.5 2019-11-01

* Work on vignette render size.

# replyr 1.0.4 2019-07-24

* Adjust license.
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ summary(dRemote)
glimpse(dRemote)
# Observations: ??
# Variables: 3
# Database: sqlite 3.22.0 [:memory:]
# Database: sqlite 3.29.0 [:memory:]
# $ x <dbl> 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 2
# $ y <dbl> 3, 5, NA, 3, 5, NA, 3, 5, NA, 3, 5, NA, 3, 5, NA
# $ z <chr> NA, "a", "b", NA, "a", "b", NA, "a", "b", NA, "a", "b", NA, "a", "b"
Expand Down Expand Up @@ -355,8 +355,8 @@ library('dplyr')
``` r
values <- c(2)
dRemote %>% replyr::replyr_filter('x', values)
# # Source: table<replyr_filter_55094816429194322430_0000000001> [?? x 3]
# # Database: sqlite 3.22.0 [:memory:]
# # Source: table<replyr_filter_52388446252917961169_0000000001> [?? x 3]
# # Database: sqlite 3.29.0 [:memory:]
# x y z
# <dbl> <dbl> <chr>
# 1 2 5 a
Expand Down Expand Up @@ -447,8 +447,8 @@ and semantic variations between versions of data sources.
rm(list=ls())
gc()
# used (Mb) gc trigger (Mb) limit (Mb) max used (Mb)
# Ncells 951822 50.9 1922980 102.7 NA 1430461 76.4
# Vcells 1764369 13.5 8388608 64.0 16384 2515972 19.2
# Ncells 917633 49.1 1873358 100.1 NA 1175762 62.8
# Vcells 1711206 13.1 8388608 64.0 16384 2295143 17.6
```

## Note
Expand Down
53 changes: 19 additions & 34 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,60 +1,45 @@


Sub-directory doc size is to support diagrams rendered in vignettes.
Fix doc size.

## Test environments

rhub::check_for_cran()

1030#> * using R Under development (unstable) (2019-07-04 r76780)
1031#> * using platform: x86_64-w64-mingw32 (64-bit)
1032#> * using session charset: ISO8859-1
1033#> * using option '--as-cran'
1034#> * checking for file 'replyr/DESCRIPTION' ... OK
1035#> * checking extension type ... Package
1036#> * this is package 'replyr' version '1.0.4'
1037#> * checking CRAN incoming feasibility ... Note_to_CRAN_maintainers
1038#> Maintainer: 'John Mount '
1048#> * checking installed package size ... NOTE
1049#> installed size is 5.4Mb
1050#> sub-directories of 1Mb or more:
1051#> doc 5.1Mb
1076#> * checking Rd line widths ... OK
1077#> * checking Rd cross-references ... NOTE
1078#> Package unavailable to check Rd xrefs: 'rquery'
1097#> Status: 2 NOTEs
rquery is an alternative, not a dependency or suggestion.


### OSX build/check

R CMD check --as-cran replyr_1.0.4.tar.gz
R CMD check --as-cran replyr_1.0.5.tar.gz
* using R version 3.6.0 (2019-04-26)
* using platform: x86_64-apple-darwin15.6.0 (64-bit)
* using session charset: UTF-8
* using option ‘--as-cran’
* checking for file ‘replyr/DESCRIPTION’ ... OK
* checking extension type ... Package
* this is package ‘replyr’ version ‘1.0.4
* this is package ‘replyr’ version ‘1.0.5
* checking CRAN incoming feasibility ... Note_to_CRAN_maintainers
Maintainer: ‘John Mount <[email protected]>’
* checking installed package size ... NOTE
installed size is 5.4Mb
sub-directories of 1Mb or more:
doc 5.1Mb
Status: 1 NOTE

### Windows
Status: OK

devtools::check_win_devel()

### Windows

rhub::check_for_cran()
867#> * using R Under development (unstable) (2019-10-19 r77318)
868#> * using platform: x86_64-w64-mingw32 (64-bit)
869#> * using session charset: ISO8859-1
870#> * using option '--as-cran'
871#> * checking for file 'replyr/DESCRIPTION' ... OK
872#> * checking extension type ... Package
873#> * this is package 'replyr' version '1.0.5'
874#> * checking CRAN incoming feasibility ... Note_to_CRAN_maintainers
875#> Maintainer: 'John Mount '
911#> * checking Rd cross-references ... NOTE
912#> Package unavailable to check Rd xrefs: 'rquery'
932#> Status: 1 NOTE
rquery is a documented alternative to replyr, but not a dependency.

## Downstream dependencies

No declared dependencies.

devtools::revdep()

character(0)

165 changes: 165 additions & 0 deletions docs/404.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 5d855fd

Please sign in to comment.