如何用ggplot2绘制样条线?

发布于 2024-11-09 10:39:14 字数 344 浏览 4 评论 0原文

我有一些数据想要制作直方图。但是,我想用线条表示这个直方图。我尝试过使用 ggplot2 的 freq_poly 。然而,产生的线条相当锯齿状。我想知道是否可以将splinesggplot2一起使用,以便在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

指尖上的星空 2024-11-16 10:39:14

我假设您正在尝试使用 spline() 函数。如果不是,请忽略此答案。

spline() 返回两个组件 x 和 y 的列表对象:

List of 2
 $ x: num [1:93] -3.3 -3.23 -3.17 -3.1 -3.04 ...
 $ y: num [1:93] 1 0.1421 -0.1642 -0.0228 0.4294 ...

我们可以简单地将它们转换为 data.frame 并绘制它们。可能有更奇特的方法可以做到这一点,但这可行:

h <- hist( d, breaks="FD", plot=F )
zz <- spline( h$mids, h$counts )
qplot(x, y, data = data.frame(x = zz$x, y = zz$y), geom = "line")

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:

List of 2
 $ x: num [1:93] -3.3 -3.23 -3.17 -3.1 -3.04 ...
 $ y: num [1:93] 1 0.1421 -0.1642 -0.0228 0.4294 ...

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:

h <- hist( d, breaks="FD", plot=F )
zz <- spline( h$mids, h$counts )
qplot(x, y, data = data.frame(x = zz$x, y = zz$y), geom = "line")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文