larray 0.24__tar.gz → 0.25__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {larray-0.24 → larray-0.25}/PKG-INFO +46 -23
- {larray-0.24 → larray-0.25}/README.rst +45 -22
- {larray-0.24 → larray-0.25}/larray/__init__.py +1 -1
- {larray-0.24 → larray-0.25}/larray/core/array.py +333 -99
- {larray-0.24 → larray-0.25}/larray/core/axis.py +165 -9
- {larray-0.24 → larray-0.25}/larray/core/group.py +4 -2
- {larray-0.24 → larray-0.25}/larray/core/session.py +187 -17
- larray-0.25/larray/experiment_docparse.py +107 -0
- larray-0.25/larray/experiment_graphicsscene.py +36 -0
- larray-0.25/larray/experiment_midas_compare_variants.py +17 -0
- larray-0.25/larray/experiments.py +18 -0
- larray-0.25/larray/extra/ipfp.py +307 -0
- {larray-0.24 → larray-0.25}/larray/io/session.py +43 -16
- larray-0.25/larray/test_viewer.py +3 -0
- {larray-0.24 → larray-0.25}/larray/tests/test_array.py +70 -3
- {larray-0.24 → larray-0.25}/larray/tests/test_group.py +18 -1
- larray-0.25/larray/tests/test_ipfp.py +198 -0
- {larray-0.24 → larray-0.25}/larray/tests/test_session.py +47 -8
- larray-0.25/larray/viewer/__init__.py +13 -0
- larray-0.25/larray/viewer/frozen.py +206 -0
- {larray-0.24 → larray-0.25}/larray.egg-info/PKG-INFO +46 -23
- {larray-0.24 → larray-0.25}/larray.egg-info/SOURCES.txt +6 -4
- larray-0.25/larray.egg-info/requires.txt +2 -0
- {larray-0.24 → larray-0.25}/setup.py +2 -2
- larray-0.24/larray/extra/ipfp.py +0 -236
- larray-0.24/larray/tests/test_ipfp.py +0 -93
- larray-0.24/larray/viewer/__init__.py +0 -13
- larray-0.24/larray/viewer/api.py +0 -343
- larray-0.24/larray/viewer/combo.py +0 -244
- larray-0.24/larray/viewer/model.py +0 -816
- larray-0.24/larray/viewer/view.py +0 -1932
- larray-0.24/larray.egg-info/requires.txt +0 -2
- {larray-0.24 → larray-0.25}/larray/core/__init__.py +0 -0
- {larray-0.24 → larray-0.25}/larray/core/abc.py +0 -0
- {larray-0.24 → larray-0.25}/larray/core/expr.py +0 -0
- {larray-0.24 → larray-0.25}/larray/core/ufuncs.py +0 -0
- {larray-0.24 → larray-0.25}/larray/example.py +0 -0
- {larray-0.24 → larray-0.25}/larray/extra/__init__.py +0 -0
- {larray-0.24 → larray-0.25}/larray/io/__init__.py +0 -0
- {larray-0.24 → larray-0.25}/larray/io/array.py +0 -0
- {larray-0.24 → larray-0.25}/larray/io/excel.py +0 -0
- {larray-0.24 → larray-0.25}/larray/ipfp/__init__.py +0 -0
- {larray-0.24 → larray-0.25}/larray/tests/__init__.py +0 -0
- {larray-0.24 → larray-0.25}/larray/tests/common.py +0 -0
- {larray-0.24 → larray-0.25}/larray/tests/data/data.h5 +0 -0
- {larray-0.24 → larray-0.25}/larray/tests/data/data.xlsx +0 -0
- {larray-0.24 → larray-0.25}/larray/tests/data/hh.csv +0 -0
- {larray-0.24 → larray-0.25}/larray/tests/data/pop.csv +0 -0
- {larray-0.24 → larray-0.25}/larray/tests/data/qx.csv +0 -0
- {larray-0.24 → larray-0.25}/larray/tests/test_axis.py +0 -0
- {larray-0.24 → larray-0.25}/larray/tests/test_excel.py +0 -0
- {larray-0.24 → larray-0.25}/larray/util/__init__.py +0 -0
- {larray-0.24 → larray-0.25}/larray/util/misc.py +0 -0
- {larray-0.24 → larray-0.25}/larray/util/oset.py +0 -0
- {larray-0.24 → larray-0.25}/larray.egg-info/dependency_links.txt +0 -0
- {larray-0.24 → larray-0.25}/larray.egg-info/top_level.txt +0 -0
- {larray-0.24 → larray-0.25}/setup.cfg +0 -0
|
@@ -1,20 +1,36 @@
|
|
|
1
1
|
Metadata-Version: 1.1
|
|
2
2
|
Name: larray
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.25
|
|
4
4
|
Summary: N-D labeled arrays in Python
|
|
5
5
|
Home-page: https://github.com/liam2/larray
|
|
6
6
|
Author: Gaetan de Menten, Geert Bryon, Johan Duyck, Alix Damman
|
|
7
7
|
Author-email: gdementen@gmail.com
|
|
8
8
|
License: GPLv3
|
|
9
|
-
Description: LArray
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
larray provides a Labelled Array class
|
|
9
|
+
Description: LArray: N-dimensional labelled arrays
|
|
10
|
+
=====================================
|
|
13
11
|
|
|
14
12
|
|build-status| |docs|
|
|
15
13
|
|
|
14
|
+
.. _start-intro:
|
|
15
|
+
|
|
16
|
+
LArray is open source Python library that aims to provide tools for easy exploration and manipulation of
|
|
17
|
+
N-dimensional labelled data structures.
|
|
18
|
+
|
|
19
|
+
Library Highlights
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* N-dimensional labelled array objects to store and manipulate multi-dimensional data
|
|
23
|
+
|
|
24
|
+
* I/O functions for reading and writing arrays in different formats:
|
|
25
|
+
CSV, Microsoft Excel, HDF5, pickle
|
|
16
26
|
|
|
17
|
-
|
|
27
|
+
* Arrays can be grouped into Session objects and loaded/dumped at once
|
|
28
|
+
|
|
29
|
+
* User interface with an IPython console for rapid exploration of data
|
|
30
|
+
|
|
31
|
+
* Compatible with the pandas library: LArray objects can be converted into pandas DataFrame and vice versa.
|
|
32
|
+
|
|
33
|
+
.. _start-install:
|
|
18
34
|
|
|
19
35
|
Installation
|
|
20
36
|
============
|
|
@@ -91,19 +107,24 @@ Description: LArray
|
|
|
91
107
|
provides functions to easily download EUROSTAT files as larray objects.
|
|
92
108
|
Currently limited to TSV files.
|
|
93
109
|
|
|
110
|
+
.. _start-dependencies-gui:
|
|
111
|
+
|
|
94
112
|
For Graphical User Interface
|
|
95
113
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
96
114
|
|
|
97
|
-
LArray includes a graphical user interface to
|
|
98
|
-
view and edit arrays.
|
|
115
|
+
LArray includes a graphical user interface to view, edit and compare arrays.
|
|
99
116
|
|
|
100
117
|
- `pyqt <https://riverbankcomputing.com/software/pyqt/intro>`__ (4 or 5):
|
|
101
|
-
|
|
118
|
+
required by `larray-editor` (see below).
|
|
102
119
|
- `pyside <https://wiki.qt.io/PySide>`__:
|
|
103
120
|
alternative to PyQt.
|
|
104
121
|
- `qtpy <https://github.com/spyder-ide/qtpy>`__:
|
|
105
|
-
required
|
|
106
|
-
Provides support for PyQt5, PyQt4 and PySide using the PyQt5 layout
|
|
122
|
+
required by `larray-editor`.
|
|
123
|
+
Provides support for PyQt5, PyQt4 and PySide using the PyQt5 layout.
|
|
124
|
+
- `larray-editor <https://github.com/larray-project/larray-editor>`__:
|
|
125
|
+
required to use the graphical user interface associated with larray.
|
|
126
|
+
It assumes that `qtpy` and `pyqt` or `pyside` are installed.
|
|
127
|
+
On windows, creates also a menu ``LArray`` in the Windows Start Menu.
|
|
107
128
|
|
|
108
129
|
For plotting
|
|
109
130
|
~~~~~~~~~~~~
|
|
@@ -111,33 +132,35 @@ Description: LArray
|
|
|
111
132
|
- `matplotlib <http://matplotlib.org/>`__:
|
|
112
133
|
required for plotting.
|
|
113
134
|
|
|
135
|
+
.. _start-documentation:
|
|
114
136
|
|
|
115
|
-
|
|
116
|
-
|
|
137
|
+
Documentation
|
|
138
|
+
=============
|
|
117
139
|
|
|
118
|
-
|
|
119
|
-
is done via ::
|
|
140
|
+
The official documentation is hosted on ReadTheDocs at http://larray.readthedocs.io/en/stable/
|
|
120
141
|
|
|
121
|
-
|
|
142
|
+
.. _start-get-in-touch:
|
|
122
143
|
|
|
123
|
-
|
|
124
|
-
|
|
144
|
+
Get in touch
|
|
145
|
+
============
|
|
125
146
|
|
|
126
|
-
|
|
127
|
-
|
|
147
|
+
- Report bugs, suggest features or view the source code `on GitHub`_.
|
|
148
|
+
- For questions, ideas or general discussion, use the `mailing list`_.
|
|
128
149
|
|
|
129
|
-
|
|
150
|
+
.. _on GitHub: http://github.com/liam2/larray
|
|
151
|
+
.. _mailing list: https://groups.google.com/forum/#!forum/larray
|
|
130
152
|
|
|
153
|
+
.. end-readme-file
|
|
131
154
|
|
|
132
155
|
.. |build-status| image:: https://travis-ci.org/liam2/larray.svg?branch=master
|
|
133
156
|
:alt: build status
|
|
134
157
|
:scale: 100%
|
|
135
158
|
:target: https://travis-ci.org/liam2/larray
|
|
136
159
|
|
|
137
|
-
.. |docs| image:: https://readthedocs.org/projects/larray/badge/?version=
|
|
160
|
+
.. |docs| image:: https://readthedocs.org/projects/larray/badge/?version=stable
|
|
138
161
|
:alt: Documentation Status
|
|
139
162
|
:scale: 100%
|
|
140
|
-
:target: https://larray.readthedocs.io/en/latest/?badge=
|
|
163
|
+
:target: https://larray.readthedocs.io/en/latest/?badge=stable
|
|
141
164
|
|
|
142
165
|
Platform: UNKNOWN
|
|
143
166
|
Classifier: Development Status :: 4 - Beta
|
|
@@ -1,12 +1,28 @@
|
|
|
1
|
-
LArray
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
larray provides a Labelled Array class
|
|
1
|
+
LArray: N-dimensional labelled arrays
|
|
2
|
+
=====================================
|
|
5
3
|
|
|
6
4
|
|build-status| |docs|
|
|
7
5
|
|
|
6
|
+
.. _start-intro:
|
|
7
|
+
|
|
8
|
+
LArray is open source Python library that aims to provide tools for easy exploration and manipulation of
|
|
9
|
+
N-dimensional labelled data structures.
|
|
10
|
+
|
|
11
|
+
Library Highlights
|
|
12
|
+
------------------
|
|
13
|
+
|
|
14
|
+
* N-dimensional labelled array objects to store and manipulate multi-dimensional data
|
|
15
|
+
|
|
16
|
+
* I/O functions for reading and writing arrays in different formats:
|
|
17
|
+
CSV, Microsoft Excel, HDF5, pickle
|
|
8
18
|
|
|
9
|
-
|
|
19
|
+
* Arrays can be grouped into Session objects and loaded/dumped at once
|
|
20
|
+
|
|
21
|
+
* User interface with an IPython console for rapid exploration of data
|
|
22
|
+
|
|
23
|
+
* Compatible with the pandas library: LArray objects can be converted into pandas DataFrame and vice versa.
|
|
24
|
+
|
|
25
|
+
.. _start-install:
|
|
10
26
|
|
|
11
27
|
Installation
|
|
12
28
|
============
|
|
@@ -83,19 +99,24 @@ For IO (HDF, Excel)
|
|
|
83
99
|
provides functions to easily download EUROSTAT files as larray objects.
|
|
84
100
|
Currently limited to TSV files.
|
|
85
101
|
|
|
102
|
+
.. _start-dependencies-gui:
|
|
103
|
+
|
|
86
104
|
For Graphical User Interface
|
|
87
105
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
88
106
|
|
|
89
|
-
LArray includes a graphical user interface to
|
|
90
|
-
view and edit arrays.
|
|
107
|
+
LArray includes a graphical user interface to view, edit and compare arrays.
|
|
91
108
|
|
|
92
109
|
- `pyqt <https://riverbankcomputing.com/software/pyqt/intro>`__ (4 or 5):
|
|
93
|
-
|
|
110
|
+
required by `larray-editor` (see below).
|
|
94
111
|
- `pyside <https://wiki.qt.io/PySide>`__:
|
|
95
112
|
alternative to PyQt.
|
|
96
113
|
- `qtpy <https://github.com/spyder-ide/qtpy>`__:
|
|
97
|
-
required
|
|
98
|
-
Provides support for PyQt5, PyQt4 and PySide using the PyQt5 layout
|
|
114
|
+
required by `larray-editor`.
|
|
115
|
+
Provides support for PyQt5, PyQt4 and PySide using the PyQt5 layout.
|
|
116
|
+
- `larray-editor <https://github.com/larray-project/larray-editor>`__:
|
|
117
|
+
required to use the graphical user interface associated with larray.
|
|
118
|
+
It assumes that `qtpy` and `pyqt` or `pyside` are installed.
|
|
119
|
+
On windows, creates also a menu ``LArray`` in the Windows Start Menu.
|
|
99
120
|
|
|
100
121
|
For plotting
|
|
101
122
|
~~~~~~~~~~~~
|
|
@@ -103,30 +124,32 @@ For plotting
|
|
|
103
124
|
- `matplotlib <http://matplotlib.org/>`__:
|
|
104
125
|
required for plotting.
|
|
105
126
|
|
|
127
|
+
.. _start-documentation:
|
|
106
128
|
|
|
107
|
-
|
|
108
|
-
|
|
129
|
+
Documentation
|
|
130
|
+
=============
|
|
109
131
|
|
|
110
|
-
|
|
111
|
-
is done via ::
|
|
132
|
+
The official documentation is hosted on ReadTheDocs at http://larray.readthedocs.io/en/stable/
|
|
112
133
|
|
|
113
|
-
|
|
134
|
+
.. _start-get-in-touch:
|
|
114
135
|
|
|
115
|
-
|
|
116
|
-
|
|
136
|
+
Get in touch
|
|
137
|
+
============
|
|
117
138
|
|
|
118
|
-
|
|
119
|
-
|
|
139
|
+
- Report bugs, suggest features or view the source code `on GitHub`_.
|
|
140
|
+
- For questions, ideas or general discussion, use the `mailing list`_.
|
|
120
141
|
|
|
121
|
-
|
|
142
|
+
.. _on GitHub: http://github.com/liam2/larray
|
|
143
|
+
.. _mailing list: https://groups.google.com/forum/#!forum/larray
|
|
122
144
|
|
|
145
|
+
.. end-readme-file
|
|
123
146
|
|
|
124
147
|
.. |build-status| image:: https://travis-ci.org/liam2/larray.svg?branch=master
|
|
125
148
|
:alt: build status
|
|
126
149
|
:scale: 100%
|
|
127
150
|
:target: https://travis-ci.org/liam2/larray
|
|
128
151
|
|
|
129
|
-
.. |docs| image:: https://readthedocs.org/projects/larray/badge/?version=
|
|
152
|
+
.. |docs| image:: https://readthedocs.org/projects/larray/badge/?version=stable
|
|
130
153
|
:alt: Documentation Status
|
|
131
154
|
:scale: 100%
|
|
132
|
-
:target: https://larray.readthedocs.io/en/latest/?badge=
|
|
155
|
+
:target: https://larray.readthedocs.io/en/latest/?badge=stable
|