From 3aa3b423c717604724e5d40552822220a83373a9 Mon Sep 17 00:00:00 2001 From: Bjoern Koneswarakantha Date: Fri, 8 Dec 2023 08:13:35 +0100 Subject: [PATCH] expressive pkg import vignette --- .github/workflows/articles.yml | 2 +- NEWS.md | 2 +- README.Rmd | 2 +- README.md | 12 +++++------- cran-comments.md | 5 ++--- vignettes/parcats.Rmd | 2 +- 6 files changed, 11 insertions(+), 14 deletions(-) diff --git a/.github/workflows/articles.yml b/.github/workflows/articles.yml index 3917d2c..ff0a58f 100644 --- a/.github/workflows/articles.yml +++ b/.github/workflows/articles.yml @@ -28,7 +28,7 @@ jobs: needs: check - name: Install dependencies run: | - install.packages(c("remotes", "devtools", "tidyverse", "pkgdown")) + install.packages(c("remotes", "devtools", "pkgdown")) remotes::install_deps(dependencies = TRUE) devtools::install() shell: Rscript {0} diff --git a/NEWS.md b/NEWS.md index 6902983..7583306 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,5 @@ # parcats 0.0.5 -* resubmit to CRAN +* update vignette # parcats 0.0.4 * updated package dependencies diff --git a/README.Rmd b/README.Rmd index da0fd1c..e5bccef 100644 --- a/README.Rmd +++ b/README.Rmd @@ -19,7 +19,7 @@ knitr::opts_chunk$set( # parcats -[![AppVeyor build status](https://ci.appveyor.com/api/projects/status/github/erblast/parcats?branch=master&svg=true)](https://ci.appveyor.com/project/erblast/parcats) + [![Codecov test coverage](https://codecov.io/gh/erblast/parcats/branch/master/graph/badge.svg)](https://app.codecov.io/gh/erblast/parcats?branch=master) [![CRAN status](https://www.r-pkg.org/badges/version/parcats)](https://CRAN.R-project.org/package=parcats) [![CRAN_time_from_release](https://www.r-pkg.org/badges/ago/parcats)](https://cran.r-project.org/package=parcats) diff --git a/README.md b/README.md index 4c5d206..c8ff551 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,6 @@ -[![AppVeyor build -status](https://ci.appveyor.com/api/projects/status/github/erblast/parcats?branch=master&svg=true)](https://ci.appveyor.com/project/erblast/parcats) [![Codecov test coverage](https://codecov.io/gh/erblast/parcats/branch/master/graph/badge.svg)](https://app.codecov.io/gh/erblast/parcats?branch=master) [![CRAN @@ -42,6 +40,7 @@ install.packages('parcats') ### Development Version ``` r + # install.packages("devtools") devtools::install_github("erblast/parcats") ``` @@ -51,10 +50,9 @@ devtools::install_github("erblast/parcats") `parcats` requires an alluvial plot created with `easyalluvial` to create an interactive parrallel categories diagram. -- [easyalluvial - documentation](https://erblast.github.io/easyalluvial/) +- [easyalluvial documentation](https://erblast.github.io/easyalluvial/) -- [easyalluvial github page](https://github.com/erblast/easyalluvial) +- [easyalluvial github page](https://github.com/erblast/easyalluvial) ## Examples @@ -97,8 +95,8 @@ plots attempt to visualise ML models in a two dimensional space. Using alluvial plots or parrallel categories diagrams we can increase the number of dimensions. -- [Visualise model response with alluvial - plots](https://www.datisticsblog.com/2019/04/visualising-model-response-with-easyalluvial/) +- [Visualise model response with alluvial + plots](https://www.datisticsblog.com/2019/04/visualising-model-response-with-easyalluvial/) Here we see the response of a random forest model if we vary the three variables with the highest importance while keeping all other features diff --git a/cran-comments.md b/cran-comments.md index 6560ffa..7453321 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -7,9 +7,8 @@ Dependency 'easyalluvial' on CRAN again no reverse dependencies ## Test Environments -* local macOS M1 R 4.2.1 -* Appveyor x86_64-w64-mingw32/x64 (64-bit) R 4.2.1 -* github actions macos-latest R 4.2.1 +* local macOS M1 R 4.3.2 +* github actions macos-latest R 4.3.2 * WinBuilder R 4.2.1 * WinBuilder R devel diff --git a/vignettes/parcats.Rmd b/vignettes/parcats.Rmd index b1de7fc..4e71b87 100644 --- a/vignettes/parcats.Rmd +++ b/vignettes/parcats.Rmd @@ -19,7 +19,7 @@ editor_options: ## Examples ```{r} -suppressPackageStartupMessages(require(tidyverse)) +suppressPackageStartupMessages(require(dplyr)) suppressPackageStartupMessages(require(easyalluvial)) suppressPackageStartupMessages(require(parcats)) ```