__init__.py 761 B

1234567891011121314151617181920212223242526
  1. """
  2. Module to read ARFF files, which are the standard data format for WEKA.
  3. ARFF is a text file format which support numerical, string and data values.
  4. The format can also represent missing data and sparse data.
  5. Notes
  6. -----
  7. The ARFF support in ``scipy.io`` provides file reading functionality only.
  8. For more extensive ARFF functionality, see `liac-arff
  9. <https://github.com/renatopp/liac-arff>`_.
  10. See the `WEKA website <http://weka.wikispaces.com/ARFF>`_
  11. for more details about the ARFF format and available datasets.
  12. """
  13. from __future__ import division, print_function, absolute_import
  14. from .arffread import *
  15. from . import arffread
  16. __all__ = arffread.__all__
  17. from scipy._lib._testutils import PytestTester
  18. test = PytestTester(__name__)
  19. del PytestTester