如何用ggplot2绘制样条线?
我有一些数据想要制作直方图。但是,我想用线条表示这个直方图。我尝试过使用 ggplot2 的 freq_poly 。然而,产生的线条相当锯齿状。我想知道是否可以将splines
与ggplot2
一起使用,以便在freq_poly
中生成的线条会更平滑。
d <- rnorm( 1000 )
h <- hist( d, breaks="FD", plot=F )
plot( spline( h$mids, h$counts ), type="l" )
这就是我想要实现的目标。但我想使用 ggplot2 来做到这一点。
I have some data that i want to make a histogram of. However, I want to represent this histogram with line. I have tried using the freq_poly
of the ggplot2
. However, the line produced is pretty jagged. I want to know if it is possible to use the splines
with ggplot2
, so that the line produced in freq_poly
will be smoother.
d <- rnorm( 1000 )
h <- hist( d, breaks="FD", plot=F )
plot( spline( h$mids, h$counts ), type="l" )
This is what i want to accomplish. But I want to do it using ggplot2
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您正在尝试使用 spline() 函数。如果不是,请忽略此答案。
spline() 返回两个组件 x 和 y 的列表对象:
我们可以简单地将它们转换为 data.frame 并绘制它们。可能有更奇特的方法可以做到这一点,但这可行:
I'm assuming that you are trying to use the
spline()
function. If not, disregard this answer.spline()
returns a list object of two components, x and y:We can simply turn these into a data.frame and plot them There may be a fancier ways to do this, but this will work: