| Algorithm-DimReduction documentation | view source | Contained in the Algorithm-DimReduction distribution. |
Algorithm::DimReduction::Result - Result object of analyze method
# you can check contribution_rate
my $result = $reductor->analyze( $matrix );
print Dumper $result->contribution_rate;
# save and load
$reductor->save_analyzed($result);
my $result = $reductor->load_analyzed('save_dir');
# it will be used as argument of reduce()
$reductor->reduce( $result, $reduce_to);
Algorithm::DimReduction::Result is result of analyze method.
It will be used as argument of reduce method.
Takeshi Miki <t.miki@nttr.co.jp>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Algorithm-DimReduction documentation | view source | Contained in the Algorithm-DimReduction distribution. |