gpt4 book ai didi

R 与 ggplot2 水平线平均

转载 作者:行者123 更新时间:2023-12-02 08:52:13 25 4
gpt4 key购买 nike

我的脚本可以从 csv 文件读取数据。我正在计算平均值,但我希望将图表上的平均值视为水平线。

avg = myData$Electricity.Costs
mean(avg)

ggplot(data = myData,
aes(x = Date, y = Electricity.Costs,
group = Budget.Plan.Monthly.Amount, colours = "Budget.Plan.Monthly.Amount")) +
geom_line() +
geom_point(aes(colour = Budget.Plan.Monthly.Amount))

您能给我一些建议吗?

最佳答案

ggplot(data = myData, 
aes(x = Date, y = Electricity.Costs,
group = Budget.Plan.Monthly.Amount, colours = "Budget.Plan.Monthly.Amount")) +
geom_line() +
geom_point(aes(colour = Budget.Plan.Monthly.Amount))+
geom_hline(yintercept = mean(avg))

关于R 与 ggplot2 水平线平均,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36413752/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com