使用ggplot2 geom_line绘制平方函数?

时间:2014-05-11 15:10:10

标签: r plot ggplot2

如何使用ggplot2' s geom_line绘制方形函数,其中x,y坐标是通过正方形而不是通过线连接的?

看起来像:

enter image description here

这可能吗?

1 个答案:

答案 0 :(得分:1)

为此,您可以使用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()

enter image description here