[問題類型]:
程式諮詢(我想用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")
謝謝各位先進