Skip to content

Commit f727044

Browse files
authored
Merge pull request #293 from xoopR/bug-fix
fix small bug in `merge_cols.R`
2 parents 87d752a + 1e63827 commit f727044

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

DESCRIPTION

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: distr6
22
Title: The Complete R6 Probability Distributions Interface
3-
Version: 1.8.1
3+
Version: 1.8.2
44
Authors@R:
55
c(person(given = "Raphael",
66
family = "Sonabend",
@@ -68,7 +68,12 @@ Authors@R:
6868
person(given = "Michal",
6969
family = "Lauer",
7070
role = "ctb",
71-
email = "michal.lauer.25@gmail.com"))
71+
email = "michal.lauer.25@gmail.com"),
72+
person(given = "John",
73+
family = "Zobolas",
74+
role = "ctb",
75+
email = "bblodfon@gmail.com",
76+
comment = c(ORCID = "0000-0002-3609-8674")))
7277
Description: An R6 object oriented distributions package. Unified
7378
interface for 42 probability distributions and 11 kernels including
7479
functionality for multiple scientific types. Additionally

R/merge_cols.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
))
1313
}
1414

15-
if (dim(arrs[[1L]]) == 2L) {
15+
if (length(dim(arrs[[1L]])) == 2L) {
1616
out <- .merge_matpdf_cols(arrs)
1717
} else {
1818
out <- .merge_arrpdf_cols(arrs)

0 commit comments

Comments
 (0)