The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Arff::Util - ARFF files processing utilities.

VERSION

Version 0.01

SYNOPSIS

Quick summary of what the module does.

  use ARFF::Util;
  
  # load .arff formatted file into the buffer, and return pointer to buffer
  $arff_hash = load_arff($file_address);
  
  # save given buffer into the .arff formatted file
  save_arff($arff_hash, $file_address);

DESCRIPTION

ARFF::Util provides a collection of methods for processing ARFF formatted files. "An ARFF (Attribute-Relation File Format) file is an ASCII text file that describes a list of instances sharing a set of attributes." for more information about ARFF format visit http://weka.sourceforge.net/wekadoc/index.php/en:ARFF_%283.5.1%29

EXPORT

FUNCTIONS

load_arff

Get arff file path and load it in buffer

save_arff

Save given buffer into the .arff formatted file. This method is not implemented yet.

AUTHOR

Ehsan Emadzadeh, <ehsan0emadzadeh at yahoo.com>

BUGS

Please report any bugs or feature requests to bug-arff-util at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Arff-Util. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Arff::Util

You can also look for information at:

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

Copyright 2008 Ehsan Emadzadeh, all rights reserved.

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