假设我有一个名为 seur 的 Seurat 对象,其元数据包含一个名为“count”(双精度列表)的列,该列显示某个单元格出现了多少次。我想使用 FeaturePlot 工具在我的 UMAP 上绘制计数,以便通过颜色渐变查看高计数在哪里。
然而,当我这样做时:
FeaturePlot(seur, features = "count")
我得到错误:
count.Error in if (unique.feature.exp == 0) { :
missing value where TRUE/FALSE needed
如何解决此错误和/或正确使用 FeaturePlot?