We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18fb80f commit cf8eb69Copy full SHA for cf8eb69
2 files changed
DESCRIPTION
@@ -1,6 +1,6 @@
1
Package: narray
2
Title: R Package for Handling Arrays in a Consistent Manner
3
-Version: 0.0.4
+Version: 0.0.5
4
Author: Michael Schubert <mschu.dev@gmail.com>
5
Maintainer: Michael Schubert <mschu.dev@gmail.com>
6
Description: Provides functions to query and manipulate arrays
R/which.r
@@ -8,7 +8,7 @@ which = function(x, drop=TRUE) {
8
if (!drop)
9
x = as.array(x)
10
11
- re = which(x, arr.ind=TRUE)
+ re = base::which(x, arr.ind=TRUE)
12
colnames(re) = names(dimnames(x))
13
re
14
}
0 commit comments