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


Algorithm-DimReduction documentation  | view source Contained in the Algorithm-DimReduction distribution.

Index


NAME

Top

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

SYNOPSIS

Top

  # 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

Top

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

It will be used as argument of reduce method.

METHODS

Top

new(%args)

contribution_rate()

AUTHOR

Top

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

LICENSE

Top

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

SEE ALSO

Top


Algorithm-DimReduction documentation  | view source Contained in the Algorithm-DimReduction distribution.