我几乎完全按照自己的意愿制作了图形。我唯一的问题是如何使数字每5个值显示在y轴上?现在,它是y轴从-50到50的图,每25个数字隔开。
这是我到目前为止的代码:
ggplot(run_diff_2019) +
geom_bar(aes(run_diff_2019$Team, run_diff_2019$Run.Diff., fill = run_diff_2019$Team), stat = "summary", fun.y = "mean") +
ylab("Run Differential") +
xlab("Team Name") +
theme_dark() +
theme(legend.position = "none") +
theme(axis.text.x = element_text(angle = 90))
提前谢谢!