gpt4 book ai didi

r - DoHeatmap 函数 Seurat - 数据帧错误 : arguments imply differing number of rows

转载 作者:行者123 更新时间:2023-12-04 10:20:43 27 4
gpt4 key购买 nike

我正在尝试使用 Seurat 中的 DoHeatmap 函数来显示一些定义的簇中多个基因的表达。
B_cells 是我的 Seurat 对象。

tfs <- c("PRDM1", "PAX5", "BACH2")

DoHeatmap(B_cells, features=tfs)

我恢复了这个错误;
Error in data.frame(group = sort(x = group.use), x = x.divs) : 
arguments imply differing number of rows: 10411, 0

当我查看 Seurat 对象中的行数和列数时;
nrow(B_cells) = 19651

ncol(B_cells) = 10151

对不起,如果这是一个愚蠢的问题,但我已经坚持了一段时间了。

编辑回溯():
3: stop(gettextf("arguments imply differing number of rows: %s", 
paste(unique(nrows), collapse = ", ")), domain = NA)
2: data.frame(group = sort(x = group.use), x = x.divs)
1: DoHeatmap(B_cells, features = genes)

最佳答案

DoHeatmap() 函数的源代码可以在 https://github.com/satijalab/seurat/blob/develop/R/visualization.R 找到. traceback() 显示了 visualization.R 的第 363 行导致错误:

if (label) {
x.max <- max(pbuild$layout$panel_params[[1]]$x.range)
# Attempt to pull xdivs from x.major in ggplot2 < 3.3.0; if NULL, pull from the >= 3.3.0 slot
x.divs <- pbuild$layout$panel_params[[1]]$x.major %||% pbuild$layout$panel_params[[1]]$x$break_positions()
x <- data.frame(group = sort(x = group.use), x = x.divs)
...
}

作为绕过错误的解决方法,请尝试:
DoHeatmap(B_cells, features=tfs, label=FALSE)

关于r - DoHeatmap 函数 Seurat - 数据帧错误 : arguments imply differing number of rows,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60869986/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com