每当我运行代码时,我都会收到这个错误,
cog_desc中的错误(count_names[1],"最小组计数名称"(:对"x"的断言失败:类型必须为"atomic scalar",而不是"NULL"。
有人知道我可能需要如何处理我的数据吗。数据还有一些NAs Time和total都是数字变量,而id是字符变量。
qplot(Time, overall, data =pur_longdata) +
facet_trelliscope(~ distinct_id) +
theme_bw()
一个潜在的原因是X特性不是数字格式,而是字符。
Assertion on 'x' failed: Must be of type 'atomic scalar.'
它尖叫着说x功能不是数字格式的。快速修复:
pur_longdata <- pur_longdata %>% mutate(Time = as.numeric(Time))
我无法重现该示例,因为没有提供对pur_longdata的访问权限。然而,这个解决方案可能会帮助出现类似错误的人。