我必须显然遗漏了一些简单的东西,或者这是一个小错误。当使用 shape=factor 时,geom_point () 总是缺少绘图符号。使用 color=factor 时不会发生这种情况。感谢你的帮助。这是一个测试代码。
test <- data.frame(let=sample(LETTERS,7), id=c(1:7), y=c(id*7))
ggplot(data=test, aes(x=id, y=y))+
geom_point(aes(shape=let), size=6)
“请注意这里的缺失点(仅 6 出 7),因为其中一个符号缺失,这通常是按字母顺序排列的最后一个因素”
ggplot(data=test, aes(x=id, y=y))+
geom_point(aes(color=let), size=6)
“这里我们看到 7 个不同颜色的点”
谢谢,VJ