NAME

Algorithm::DimReduction::Result - Result object of analyze method

SYNOPSIS

# 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);

DESCRIPTION

Algorithm::DimReduction::Result is result of analyze method.

It will be used as argument of reduce method.

METHODS

new(%args)

contribution_rate()

AUTHOR

Takeshi Miki <t.miki@nttr.co.jp>

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO