0

我想突出显示散点图 ggplot 中的值子集。但是我收到一条错误消息,我不知道如何修复它(我是计算分析的新手)这是命令:

ggplot(table, aes(x=soma_1.5.2.5h, y=PGC_1.5.2.5h)) +
  geom_point(shape=1, color = "gray") +
  geom_point(data = subset(table, high == TRUE), 
                    aes(x=table$soma_1.5.2.5h, y=PGC_1.5.2.5h, size = 2, color = "orange")) 

所以我想突出显示“真”高的点。我有:

美学必须是长度 1 或与数据 (108) 相同:x、y、大小、颜色。

108 是高为 TRUE 的值的数量。谢谢你的帮助

4

0 回答 0