0
學習ggplot2並不明白爲什麼第二組代碼會產生錯誤。我所要做的就是在第三組代碼中添加美學到stat_smooth命令,並且它運行良好,但我不明白爲什麼。ggplot2中的邏輯迴歸模型
ggplot(df, aes(x=wave.height, y=ship.deploy)) + geom_point() +
stat_smooth(method="glm", method.args=list(family="binomial"), se=FALSE)
ggplot(data = df) +
geom_point(mapping = aes(x = wave.height, y = ship.deploy)) +
stat_smooth(method = "glm", method.args = list(family = "binomial"), se = FALSE)
Error: stat_smooth requires the following missing aesthetics: x, y
ggplot(data = df) +
geom_point(mapping = aes(x = wave.height, y = ship.deploy)) +
stat_smooth(mapping = aes(x = wave.height, y = ship.deploy),method = "glm", method.args = list(family = "binomial"), se = FALSE)
我已投票結束此問題,因爲它與統計數據無關。 – SmallChess
在第一個示例中,您在'ggplot'中全局映射'x'和'y'。這些全球美學傳遞到其餘層次。在第二個例子中,你不使用全局美學,而只是在'geom_point'圖層中映射'x'和'y'。這些不會傳遞給其他圖層,因此'stat_smooth'沒有'x'和'y'美學用途,並且會出現錯誤。 – aosmith