From b42fc2a29c1ddbf1e98584d0164d8c22b174bb8b Mon Sep 17 00:00:00 2001 From: vnijs Date: Tue, 22 Oct 2024 17:12:24 -0700 Subject: [PATCH] CRAN 1.6.7 (arrow) --- DESCRIPTION | 8 ++++---- NEWS.md | 4 ++++ README.md | 9 ++++----- cran-comments.md | 17 ++++++++++++++++- inst/app/tools/data/manage.R | 2 -- 5 files changed, 28 insertions(+), 12 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index c23404cc..84c352c3 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: radiant.data Title: Data Menu for Radiant: Business Analytics using R and Shiny -Version: 1.6.6 -Date: 2024-5-14 +Version: 1.6.7 +Date: 2024-10-22 Authors@R: c( person("Vincent", "Nijs", email = "radiant@rady.ucsd.edu", role = c("aut", "cre")), person("Niklas", "von Hertzen", email = "niklasvh@gmail.com", role = c("aut"), comment = "html2canvas library") @@ -20,7 +20,6 @@ Depends: Imports: tibble (>= 1.4.2), rlang (>= 0.4.10), - arrow (>= 12.0.1), broom (>= 0.5.2), car (>= 3.0-0), knitr (>= 1.20), @@ -49,6 +48,7 @@ Imports: MASS, base64enc Suggests: + arrow (>= 12.0.1), dbplyr (>= 2.1.1), DBI (>= 0.7), RSQLite (>= 2.0), @@ -65,4 +65,4 @@ License: AGPL-3 | file LICENSE LazyData: true Encoding: UTF-8 Language: en-US -RoxygenNote: 7.3.1 +RoxygenNote: 7.3.2 diff --git a/NEWS.md b/NEWS.md index affa3c6d..e07832d6 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,7 @@ +# radiant.data 1.6.7 + +* Moving arrow package to 'recommended' because of its size on macOS (> 100MB) + # radiant.data 1.6.6 * Require Shiny 1.8.1. Adjustments related to icon-buttons were made to address a breaking change in Shiny 1.8.1 diff --git a/README.md b/README.md index 9619edde..b92da26f 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,10 @@ -[![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/radiant.data)](https://CRAN.R-project.org/package=radiant.data) +[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/radiant.data)](https://CRAN.R-project.org/package=radiant.data) -Radiant is an open-source platform-independent browser-based interface for business analytics in [R](https://www.r-project.org/). The application is based on the [Shiny](https://shiny.posit.co/) package and can be run locally or on a server. Radiant was developed by Vincent Nijs. Please use the issue tracker on GitHub to suggest enhancements or report problems: https://github.com/radiant-rstats/radiant.data/issues. For other questions and comments please use radiant@rady.ucsd.edu. +Radiant is an open-source platform-independent browser-based interface for business analytics in [R](https://www.r-project.org/). The application is based on the [Shiny](https://shiny.posit.co/) package and can be run locally or on a server. Radiant was developed by Vincent Nijs. Please use the issue tracker on GitHub to suggest enhancements or report problems: https://github.com/radiant-rstats/radiant.data/issues. For other questions and comments please use radiant@rady.ucsd.edu. ## Key features @@ -15,8 +15,7 @@ Radiant is an open-source platform-independent browser-based interface for busin - Programming: Integrate Radiant's analysis functions with your own R-code - Context: Data and examples focus on business applications - - + #### Playlists @@ -185,4 +184,4 @@ The documentation, images, and videos for the `radiant.data` package are license If you are interested in using any of the radiant packages please email me at radiant@rady.ucsd.edu -© Vincent Nijs (2024) Creative Commons License \ No newline at end of file +© Vincent Nijs (2024) Creative Commons License diff --git a/cran-comments.md b/cran-comments.md index e0df945b..1a3d0a8a 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1,5 +1,20 @@ ## Resubmission +This is a resubmission. In this version I moved the arrow package to 'recommended' because of its size on macOS (>100MB) + +## Test environments + +* macOS, R 4.4.1 +* win-builder (devel) + +## R CMD check results + +There were no ERRORs or WARNINGs. There was one NOTE related to the number of non-standard dependencies. However, this note is not easily addressed without substantially inconveniencing users that rely on the web (shiny) interface available for radiant.data. + +# Previous cran-comments + +## Resubmission + This is a resubmission. In this version I require shiny version 1.8.1 or newer and have addressed a breaking change introduced in that version of shiny. See NEWS.md for details. ## Test environments @@ -12,7 +27,7 @@ This is a resubmission. In this version I require shiny version 1.8.1 or newer a There were no ERRORs or WARNINGs. There was one NOTE related to the number of non-standard dependencies. However, this note is not easily addressed without substantially inconveniencing users that rely on the web (shiny) interface available for radiant.data. -# Previous cran-comments + ## Resubmission diff --git a/inst/app/tools/data/manage.R b/inst/app/tools/data/manage.R index eff245eb..efa38c48 100644 --- a/inst/app/tools/data/manage.R +++ b/inst/app/tools/data/manage.R @@ -140,8 +140,6 @@ load_user_data <- function(fname, uFile, ext, header = TRUE, upload_error_handler(objname, "#### There was an error loading the data. Please make sure the data are in parquet format.") } else { r_data[[objname]] <- as.data.frame(robj, stringsAsFactors = FALSE) - ## waiting for https://github.com/wesm/feather/pull/326 - # cmd <- paste0(objname, " <- feather::read_feather(", pp$rpath, ", columns = c())\nregister(\"", objname, "\", desc = feather::feather_metadata(\"", pp$rpath, "\")$description)") cmd <- glue("{objname} <- arrow::read_parquet({pp$rpath})") } }