Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.9/dist-packages/scipy/io/arff/__init__.py: 100%

7 statements  

« prev     ^ index     » next       coverage.py v7.3.1, created at 2023-09-23 06:43 +0000

1""" 

2Module to read ARFF files 

3========================= 

4ARFF is the standard data format for WEKA. 

5It is a text file format which support numerical, string and data values. 

6The format can also represent missing data and sparse data. 

7 

8Notes 

9----- 

10The ARFF support in ``scipy.io`` provides file reading functionality only. 

11For more extensive ARFF functionality, see `liac-arff 

12<https://github.com/renatopp/liac-arff>`_. 

13 

14See the `WEKA website <http://weka.wikispaces.com/ARFF>`_ 

15for more details about the ARFF format and available datasets. 

16 

17""" 

18from ._arffread import * 

19from . import _arffread 

20 

21# Deprecated namespaces, to be removed in v2.0.0 

22from .import arffread 

23 

24__all__ = _arffread.__all__ + ['arffread'] 

25 

26from scipy._lib._testutils import PytestTester 

27test = PytestTester(__name__) 

28del PytestTester