我在 CPAN 上找到了一个名为 Statistics-MVA-MultipleRegression-0.0.1 的库,
编码示例是这样的:
use Statistics::MVA::MultipleRegression;
my $lol = [
[qw/745 36 66/],
[qw/895 37 68/],
[qw/442 47 64/],
[qw/440 32 53/],
[qw/1598 1 101/],
];
my ($Array_ref_of_coefficients, $R_sq) = linear_regression($lol);
但是数组 $lol,我想在 RUNTIME 推送一些行,而不是初始化它,
说:
my $input = [$x, $y, $z];
push @tmpArray, $input;
my $lol = \@tmpArray;
但这不起作用,谁能给我一些方法来解决这个问题?
非常感谢!