Computing corrected UMI count matrix | | 0% Error in base::tcrossprod(x, y) : non-conformable arguments In addition: Warning messages: 1: In mean.default(sort(x, partial = half + 0L:1L)[half + 0L:1L]) : argument is not numeric or logical: returning NA 2: In mean.default(sort...
Error in base::crossprod(x, y) : non-conformable arguments When I merge Seurat objects I follow this example: pbmc.big <- merge(pbmc3k, y = c(pbmc4k, pbmc8k), add.cell.ids = c("3K", "4K", "8K"), project = "PBMC15K") ...
The error message you provided, Error in crossprod(Vi2, Xiw) : non-conformable argument, suggests that the two matrices or vectors Vi2 and Xiw cannot be multiplied together due to incompatible dimensions. The operation crossprod(Vi2, Xiw) is effectively equivalent to the matrix product t(Vi...