繁体   English   中英

使用 ggplot2 stat_ecdf 在 R 中创建经验分布函数

[英]Creating empirical distribution function in R using ggplot2 stat_ecdf

我正在尝试为经验分布函数stat_ecdf制作 ggplot 图,但出现以下错误。 有关如何解决此问题的任何帮助? 这里d是一个double列表。

library(ggplot2)
 >> d
 [1] 9.126560 8.837303 6.942810 9.515659 7.614937 9.190298 6.866715 6.322031
 [9] 8.846318 7.181234 9.104691 7.187005 7.371961 7.180689 9.117338 9.174383
[17] 7.209469 9.030088 9.519537 8.987137 7.044774 7.566912 6.845430 9.370125
 >> typeof(d)
[1] "double"
 >> ggplot(data.frame(d), aes(expression)) + stat_ecdf(geom = "point")
Don't know how to automatically pick scale for object of type function. Defaulting to continuous.
Error in (function (..., row.names = NULL, check.rows = FALSE, check.names = TRUE,  : 
  arguments imply differing number of rows: 0, 24

aes需要包含x列。

ggplot(data.frame(x = d), aes(x)) + stat_ecdf(geom = "point")

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM