gpt4 book ai didi

julia - 在 barplot Julia 的条形顶部添加值

转载 作者:行者123 更新时间:2023-12-03 07:59:21 25 4
gpt4 key购买 nike

我在 Julia Plots 中有以下条形图:

using DataFrames
using Plots

df = DataFrame(group = ["A", "B"],
value = [10, 9])

bar(df[!, "group"], df[!, "value"], legend = :none)

输出:

enter image description here

我想在每个条形的顶部显示每个条形的值。因此,在此示例中,它应该显示 A 条的值 10 和 B 条的值 9。是否有自动方法,或者您应该在 Julia Plots 中注释这些值?

最佳答案

使用注释的方法。

julia> using DataFrames
julia> using Plots

julia> bar(df.group, df.value, legend = :none)

julia> annotate!(df.group, df.value, df.value, :bottom)

bar plot with text annotation above bars

关于julia - 在 barplot Julia 的条形顶部添加值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74921853/

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