Skip to content

Commit

Permalink
GGally 2.1.2 (#419)
Browse files Browse the repository at this point in the history
  • Loading branch information
schloerke committed Jun 21, 2021
1 parent 01a2c67 commit 68f15c4
Show file tree
Hide file tree
Showing 15 changed files with 754 additions and 396 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fail-fast: false
matrix:
config:
- { os: macOS-latest, r: 'devel', force_suggests: "0" }
# - { os: macOS-latest, r: 'devel', force_suggests: "0" }
# - { os: window-latest, r: 'devel', force_suggests: "1" }

- { os: macOS-latest, r: 'release', force_suggests: "1" }
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: GGally
Version: 2.1.1.9000
Version: 2.1.2
License: GPL (>= 2.0)
Title: Extension to 'ggplot2'
Type: Package
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# GGally (development version)
# GGally 2.1.2

### Bug fixes

Expand Down
2 changes: 1 addition & 1 deletion R/data-australia-pisa-2012.R
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@
#' @name australia_PISA2012
#' @usage data(australia_PISA2012)
#' @format A data frame with 8247 rows and 32 variables
#' @source \url{http://www.oecd.org/pisa/pisaproducts/database-cbapisa2012.htm}
#' @source \url{https://www.oecd.org/pisa/pisaproducts/database-cbapisa2012.htm}
NULL
7 changes: 2 additions & 5 deletions R/ggnetworkmap.R
Original file line number Diff line number Diff line change
Expand Up @@ -56,17 +56,14 @@ if(getRversion() >= "2.15.1") {
#' rownames(airports) <- airports$iata
#'
#' # select some random flights
#' set.seed(1234)
#' set.seed(123)
#' flights <- data.frame(
#' origin = sample(airports[200:400, ]$iata, 200, replace = TRUE),
#' destination = sample(airports[200:400, ]$iata, 200, replace = TRUE)
#' )
#'
#' # convert to network
#' flights <- network(
#' flights[-114,], # remove loop
#' directed = TRUE
#' )
#' flights <- network(flights, directed = TRUE)
#'
#' # add geographic coordinates
#' flights %v% "lat" <- airports[ network.vertex.names(flights), "lat" ]
Expand Down
30 changes: 16 additions & 14 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@

## Comments
#### 2021-03-07
#### 2021-06-20

Have addressed the missing `emmeans` package error.

Have also included other small bug fixes. No new features / functions.
I have fixed the failing tests due to an update in `network` package. `GGally` now requires the latest version of the `network` package and should pass the tests.

Thank you,
Barret

#### 2021-02-24
#### 2021-06-08

Dear maintainer,

Please see the problems shown on
<https://cran.r-project.org/web/checks/check_results_GGally.html>.

Please correct before 2021-03-10 to safely retain your package on CRAN.
Please correct before 2021-06-22 to safely retain your package on CRAN.

Best,
-k
Expand All @@ -25,15 +23,16 @@ Best,

## Test environments and R CMD check results

* local macOS install 11.2.2
* local macOS install 11.3.1
* R 4.0
* GitHub Actions - https://github.com/ggobi/ggally/pull/408/checks
* windows - R devel
* macOS, windows, ubuntu 16 - R release
* macOS, windows, ubuntu 16 - R oldrelease
* GitHub Actions - https://github.com/ggobi/ggally/pull/419/checks
* macOS, windows, ubuntu {16,20} - R release
* macOS, windows, ubuntu {16,20} - R oldrelease

* win-builder
* devel
* release
* oldrelease

#### R CMD check results

Expand All @@ -42,13 +41,16 @@ Best,

## revdepcheck results

We checked 116 reverse dependencies (91 from CRAN + 25 from BioConductor), comparing R CMD check results across CRAN and dev versions of this package.
We checked 125 reverse dependencies (100 from CRAN + 25 from BioConductor), comparing R CMD check results across CRAN and dev versions of this package.

* We saw 0 new problems
* We failed to check 1 packages
* We failed to check 2 packages

Issues with CRAN packages are summarised below.

### Failed to install
### Failed to check

* egoTERGM (NA)
* Package is archived. I believe this is a false positive
* loon.ggplot (NA)
* Could not install `loon`. The changes made for this release should have a negative effect on their code.
2 changes: 1 addition & 1 deletion man/australia_PISA2012.Rd

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

7 changes: 2 additions & 5 deletions man/ggnetworkmap.Rd

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

261 changes: 136 additions & 125 deletions revdep/README.md

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions revdep/cran.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
## revdepcheck results

We checked 116 reverse dependencies (91 from CRAN + 25 from BioConductor), comparing R CMD check results across CRAN and dev versions of this package.
We checked 125 reverse dependencies (100 from CRAN + 25 from BioConductor), comparing R CMD check results across CRAN and dev versions of this package.

* We saw 0 new problems
* We failed to check 1 packages
* We failed to check 2 packages

Issues with CRAN packages are summarised below.

### Failed to check

* egoTERGM (NA)
* loon.ggplot (NA)
Loading

0 comments on commit 68f15c4

Please sign in to comment.