尝试打开 RDS 文件时没有名称插槽 "images" 错误
No slot of name "images" error when trying to open RDS file
我正在尝试打开一个文件,但似乎 运行 出错了。
这是我在 RStudio 中所做的:
file <- readRDS("~/Downloads/file.rds")
View(file)
然后我得到这个错误:
Error in eval(call("@", object, slot)) : no slot of name "images"
for this object of class "Seurat"
RDS 文件需要 Seurat,但我已经正确安装了它。我不确定如何解释此错误消息。谢谢
尝试更新 seurat 对象:
pmbc.updated = UpdateSeuratObject(object = pmbc)
我正在尝试打开一个文件,但似乎 运行 出错了。
这是我在 RStudio 中所做的:
file <- readRDS("~/Downloads/file.rds")
View(file)
然后我得到这个错误:
Error in eval(call("@", object, slot)) : no slot of name "images" for this object of class "Seurat"
RDS 文件需要 Seurat,但我已经正确安装了它。我不确定如何解释此错误消息。谢谢
尝试更新 seurat 对象:
pmbc.updated = UpdateSeuratObject(object = pmbc)