gpt4 book ai didi

perl - 在 Perl 中格式化 GD::Graph x 轴

转载 作者:行者123 更新时间:2023-12-03 23:47:43 31 4
gpt4 key购买 nike

我正在制作价格随时间变化的图表。因为我在 x 轴上有日期,所以我将它们转换为自纪元以来的天数。自纪元以来的天数不是在图表上显示的非常明确的值,因此我想使用 x_number_format 选项将它们转换回人类可读的日期。

但是......它似乎没有在渲染图形时被调用。

我创建了以下测试代码来演示问题。

use strict;
use GD::Graph::points;

# Generate some random data!
my @x_data;
my @y_data;
for (1...20) {
push @x_data, $_;
push @y_data, rand(20) + 10;
}

# This is never called - possible bug!
sub x_format {
print "X Formatter!\n";
return " - $_[0] - ";
}

# This gets called for every Y-axis point
sub y_format {
print "Y Formatter!\n";
return " - $_[0] - ";
}

my $graph=GD::Graph::points->new(1000,450);
$graph->set(
y_label => 'Random numbers',
y_number_format => \&y_format,
x_number_format => \&x_format,
x_label => 'Sequential meaningless numbers',
x_labels_vertical => 1,
x_plot_values => 1,
);
my @data=(
[ @x_data ],
[ @y_data ],
);

open PNG, ">temp.png";
binmode PNG;
print PNG $graph->plot(\@data)->png;
close PNG;

system("temp.png");

此测试代码按预期生成图形并打印 Y Formatter! 6 次。 y 轴上的每个点一个。但是,它不打印 X Formatter!并且不格式化 x 轴。

我试过更直接地格式化 x 轴值
x_number_format     => sub { " - $_[0] - " },

这也不会格式化 x 轴。

我是在做一些明显愚蠢的事情还是这是 GD:Graph 中的一个错误?
GD::Graph bug page 中没有针对此问题的错误报告

最佳答案

通过检查 source ,我看你需要设置x_tick_numberx_number_format 的定义值要调用的回调。

所以你可以尝试这样的事情:

$graph->set(
y_label => 'Random numbers',
y_number_format => \&y_format,
x_number_format => \&x_format,
x_tick_number => 6,
x_label => 'Sequential meaningless numbers',
x_labels_vertical => 1,
x_plot_values => 1,
);

根据 documentation :

x_tick_number
If set to 'auto', GD::Graph will attempt to format the X axis in a nice way, based on the actual X values. If set to a number, that's the number of ticks you will get. If set to undef, GD::Graph will treat X data as labels. Default: undef.

关于perl - 在 Perl 中格式化 GD::Graph x 轴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61547064/

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