我使用ggplot2来绘制步进函数geom_step().我现在需要的是摆脱垂直线.这应该是数学中一个非常普遍的问题,至少......
geom_step()
该文档没有提到这样的可能性.
在某处有隐藏的参数,还是我需要以某种方式转换数据,以便为每个数据点打印单独的行?
有 ggplot(data,aes(x,y))+geom_step()
ggplot(data,aes(x,y))+geom_step()
想 ggplot(data,aes(x,y))+geom_step(lines=horizontal)
ggplot(data,aes(x,y))+geom_step(lines=horizontal)
r ggplot2
ggplot2 ×1
r ×1