Skip to content

Commit

Permalink
Merge pull request #293 from xoopR/bug-fix
Browse files Browse the repository at this point in the history
fix small bug in `merge_cols.R`
  • Loading branch information
RaphaelS1 authored Oct 16, 2023
2 parents 87d752a + 1e63827 commit f727044
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: distr6
Title: The Complete R6 Probability Distributions Interface
Version: 1.8.1
Version: 1.8.2
Authors@R:
c(person(given = "Raphael",
family = "Sonabend",
Expand Down Expand Up @@ -68,7 +68,12 @@ Authors@R:
person(given = "Michal",
family = "Lauer",
role = "ctb",
email = "[email protected]"))
email = "[email protected]"),
person(given = "John",
family = "Zobolas",
role = "ctb",
email = "[email protected]",
comment = c(ORCID = "0000-0002-3609-8674")))
Description: An R6 object oriented distributions package. Unified
interface for 42 probability distributions and 11 kernels including
functionality for multiple scientific types. Additionally
Expand Down
2 changes: 1 addition & 1 deletion R/merge_cols.R
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
))
}

if (dim(arrs[[1L]]) == 2L) {
if (length(dim(arrs[[1L]])) == 2L) {
out <- .merge_matpdf_cols(arrs)
} else {
out <- .merge_arrpdf_cols(arrs)
Expand Down

0 comments on commit f727044

Please sign in to comment.