绘图条形图不反映通话中的价值

问题描述 投票:0回答:0

这让我发疯。

我有一个名为

totals
的 Polars 数据框,它按年份存储计数:

我正在使用如下代码进行非常简单的酒吧聊天:

px.bar(
    totals.to_pandas(),
    x = 'commit_year',
    y = 'count',
    color='commit_year'
)

这返回...

我不明白为什么我没有看到每年的条形图与数据框中的总数相匹配。

我将 y 轴设置为 12 个随机数的列表,以查看它如何影响图表:

px.bar(
    totals.to_pandas(),
    x = 'commit_year',
    y = [22, 33, 231, 33, 31, 31, 23, 12, 13, 10, 33, 44],
    color='commit_year'
)

这看起来很棒。

我做错了什么?

以下返回的值...

totals.select('count').to_series()

如下:

u32 73 93 88 6个 21 439 365 91 55 36 31 1

python plotly python-polars
© www.soinside.com 2019 - 2024. All rights reserved.