__init__.py 805 B

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