标签: r plot ggplot2
如何使用ggplot2' s geom_line绘制方形函数,其中x,y坐标是通过正方形而不是通过线连接的?
geom_line
看起来像:
这可能吗?
答案 0 :(得分:1)
为此,您可以使用geom_step:
geom_step
df = data.frame(x = 1:10, y = sample(c(1,2), 10, replace = TRUE)) ggplot(df, aes(x = x, y = y)) + geom_step()