这是我正在做的:
当我在R命令提示符上执行步骤时,这可以正常工作。但是当它在包的函数中完成时,第2步会引发以下错误:
Error in which(matA != 0, arr.ind = TRUE) :
argument to 'which' is not logical
这是带有示例的示例代码:
matA <- as(Matrix(c(0,1,2,1,0,0,3,0,2), nrow=3, ncol=3), "sparseMatrix") # Step 1
nz <- which(matA != 0, arr.ind = TRUE) # Step 2
> nz
row col
[1,] 2 1
[2,] 3 1
[3,] 1 2
[4,] 1 3
[5,] 3 3
在我的例子中,加载的矩阵是类型:dsCMatrix, dgCMatrix。
class(matA != 0): lsCMatrix
我不明白为什么这会导致错误。
请注意以下几点:
库:我使用的包提到了以下库:
Suggests:
testthat (>= 2.1.0),
knitr,
rmarkdown
Imports:
irlba,
text2vec,
dplyr,
magrittr,
Matrix,
readr,
rlang,
data.table,
stringr,
here
您需要加载库Matrix
,很可能包没有加载它。请参阅下面的示例:
library(Seurat)
mat = pbmc_small@assays$RNA@counts
class(mat)
[1] "dgCMatrix"
attr(,"package")
[1] "Matrix"
which(mat>0)
Error in which(mat > 0) : argument to 'which' is not logical
library(Matrix)
head(which(mat>0,arr.ind=TRUE))
row col
CD79B 2 1
HLA-DQB1 6 1
LTB 9 1
SP100 12 1
CXCR4 23 1
CD3D 31 1
如果Matrix已经加载,它可能是Matrix::它在某个地方被屏蔽了。你可以这样做:
Matrix::which(mat>0)