如何在 Plots.jl 中标记条形图?

How to label barcharts in Plots.jl?

我可以做一个简单的条形图

using Plots
bar([1,2,3])

但是如何将条形标记为 "a"、"b"、"c"?

要在 x 轴上放置标签,您可以执行以下操作:

bar(["a","b","c"],[1,2,3])

如果您想将标签放在其他地方,那么 annotate! 似乎是您的最佳选择,正如 juliohm 所建议的那样。