R语言中geom_polygon在绘图区域截取任意形状、填色(多边形)
001、
# 创建一个多边形 df <- data.frame( x = c(1, 2, 2, 1, 1.26), y = c(1, 1, 2, 1.6, 1.26) ) df # 绘制多边形 ggplot() + geom_polygon(data = df, aes(x = x, y = y), fill = "green", colour = "black", alpha) ## 绘图结果
。
001、
# 创建一个多边形 df <- data.frame( x = c(1, 2, 2, 1, 1.26), y = c(1, 1, 2, 1.6, 1.26) ) df # 绘制多边形 ggplot() + geom_polygon(data = df, aes(x = x, y = y), fill = "green", colour = "black", alpha) ## 绘图结果
。