[问题类型]:
程式咨询(我想用R 做某件事情,但是我不知道要怎么用R 写出来)
[软件熟悉度]:
新手(没写过程式,R 是我的第一
[问题叙述]:
想呈现#程式2的图形,用#程式1的方法写却怎么也没办法上加红色的线
想请问是哪里出问题?
另想顺便问一下,同样都是ggplot程式
程式1跟程式2的差别在哪?
ggplot()+
ggplot(diamonds, aes(x=price)) +
[程式范例]:
# 程式1 (无法正确显示)
ggplot()+
geom_histogram(data = diamonds, aes(x=price), binwidth = 1000)+
geom_density(y=density, color="red")
# 程式2 (正确显示)
ggplot(diamonds, aes(x=price)) +
geom_histogram(aes(y=..density..),binwidth = 1000) +
geom_density(color="red")
谢谢各位先进