嗨,我需要一些帮助来绘制一个简单的三角形
library(ggplot2)
library(data.table)
dt.triangle <- data.table(group = c(1,1,1), polygon.x = c(2,4,4), polygon.y = c(1,1,3))
p <- ggplot()
p <- p + geom_polygon(
data = dt.triangle
,aes(
x=polygon.x
,y=polygon.y
,group=group
)
)
p
我对斜线的绘制/渲染不太满意,不知何故我想画一条不显示这种“锯齿”的线。
我错过了什么吗?
出于某种原因,我想将 ggplot2 与 geom_polygon 结合使用。
任何帮助表示赞赏
汤姆