密度和组合图一起R

时间:2013-12-02 06:51:57

标签: r

#   StartTime                  Wait time
162 2011-05-12 09:59:54        0:01:07
163 2011-05-12 10:00:24        0:05:57
164 2011-05-12 10:02:20        0:05:03
165 2011-05-12 10:03:49        0:33:35
166 2011-05-12 10:06:00        0:10:51

r <- hist(may12waitingTime$StartTime, breaks = "hours")
plot(density(r$counts))

帮帮我,我想把这些情节放在一张图上。我已经尝试过StackOverflow中的lines(),points()和其他建议,但我仍然偶然发现了这一点。 Thx提前!

1 个答案:

答案 0 :(得分:0)

你可以这样做:

x <- rnorm(100) # example data

hist(x, freq = FALSE) # you need to specify freq = FALSE
lines(density(x))

enter image description here