Skip to content

Commit cf8eb69

Browse files
committed
fix which to ref base
1 parent 18fb80f commit cf8eb69

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: narray
22
Title: R Package for Handling Arrays in a Consistent Manner
3-
Version: 0.0.4
3+
Version: 0.0.5
44
Author: Michael Schubert <mschu.dev@gmail.com>
55
Maintainer: Michael Schubert <mschu.dev@gmail.com>
66
Description: Provides functions to query and manipulate arrays

R/which.r

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ which = function(x, drop=TRUE) {
88
if (!drop)
99
x = as.array(x)
1010

11-
re = which(x, arr.ind=TRUE)
11+
re = base::which(x, arr.ind=TRUE)
1212
colnames(re) = names(dimnames(x))
1313
re
1414
}

0 commit comments

Comments
 (0)