N-D labeled arrays in Python
Project description
LArray: N-dimensional labelled arrays
=====================================
|build-status| |docs|
.. _start-intro:
LArray is an open source Python library that aims to provide tools for easy exploration and manipulation of
N-dimensional labelled data structures.
Library Highlights
------------------
* N-dimensional labelled array objects to store and manipulate multi-dimensional data
* I/O functions for reading and writing arrays in different formats:
CSV, Microsoft Excel, HDF5, pickle
* Arrays can be grouped into Session objects and loaded/dumped at once
* User interface with an IPython console for rapid exploration of data
* Compatible with the pandas library: Array objects can be converted into pandas DataFrame and vice versa.
.. _start-install:
Installation
============
Pre-built binaries
------------------
The easiest route to installing larray is through
`Conda <http://conda.pydata.org/miniconda.html>`_.
For all platforms installing larray can be done with::
conda install -c larray-project larray
This will install a lightweight version of larray
depending only on Numpy and Pandas libraries only.
Additional libraries are required to use the included
graphical user interface, make plots or use special
I/O functions for easy dump/load from Excel or
HDF files. Optional dependencies are described
below.
Installing larray with all optional dependencies
can be done with ::
conda install -c larray-project larrayenv
You can also first add the channel `larray-project` to
your channel list ::
conda config --add channels larray-project
and then install larray (or larrayenv) as ::
conda install larray
Building from source
--------------------
The latest release of LArray is available from
https://github.com/larray-project/larray.git
Once you have satisfied the requirements detailed below, simply run::
python setup.py install
Required Dependencies
---------------------
- Python 3.8, 3.9, 3.10 or 3.11
- `numpy <http://www.numpy.org/>`__ (1.22 or later)
- `pandas <http://pandas.pydata.org/>`__ (0.20 or later)
Optional Dependencies
---------------------
For IO (HDF, Excel)
~~~~~~~~~~~~~~~~~~~
- `pytables <http://www.pytables.org/>`__:
for working with files in HDF5 format.
- `xlwings <https://www.xlwings.org/>`__:
recommended package to get benefit of all Excel features of LArray.
Only available on Windows and Mac platforms.
- `openpyxl <http://www.python-excel.org/>`__:
recommended package for reading and writing
Excel 2010 files (ie: .xlsx)
- `xlsxwriter <http://www.python-excel.org/>`__:
alternative package for writing data, formatting
information and, in particular, charts in the
Excel 2010 format (ie: .xlsx)
- `xlrd <http://www.python-excel.org/>`__:
for reading data and formatting information from older Excel files (ie: .xls)
- `xlwt <http://www.python-excel.org/>`__:
for writing data and formatting information to older Excel files (ie: .xls)
- `larray_eurostat <https://github.com/larray-project/larray_eurostat>`__:
provides functions to easily download EUROSTAT files as larray objects.
Currently limited to TSV files.
.. _start-dependencies-gui:
For Graphical User Interface
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
LArray includes a graphical user interface to view, edit and compare arrays.
- `pyqt <https://riverbankcomputing.com/software/pyqt/intro>`__ (version 5):
required by `larray-editor` (see below).
- `pyside <https://wiki.qt.io/PySide>`__:
alternative to PyQt.
- `qtpy <https://github.com/spyder-ide/qtpy>`__:
required by `larray-editor`.
- `larray-editor <https://github.com/larray-project/larray-editor>`__:
required to use the graphical user interface associated with larray.
It assumes that `qtpy` and either `pyqt` or `pyside` are installed.
On windows, creates also a menu ``LArray`` in the Windows Start Menu.
For plotting
~~~~~~~~~~~~
- `matplotlib <http://matplotlib.org/>`__:
required for plotting.
Miscellaneous
~~~~~~~~~~~~~
- `pydantic <https://github.com/samuelcolvin/pydantic>`__:
required to use `CheckedSession`.
.. _start-documentation:
Documentation
=============
The official documentation is hosted on ReadTheDocs at http://larray.readthedocs.io/en/stable/
.. _start-get-in-touch:
Get in touch
============
- To be informed of each new release, please subscribe to the announce `mailing list`_.
- For questions, ideas or general discussion, please use the `Google Users Group`_.
- To report bugs, suggest features or view the source code, please go to our `GitHub website`_.
.. _mailing list: https://groups.google.com/d/forum/larray-announce
.. _Google Users Group: https://groups.google.com/d/forum/larray-users
.. _GitHub website: http://github.com/larray-project/larray
.. end-readme-file
.. |build-status| image:: https://github.com/larray-project/larray/actions/workflows/test-larray.yml/badge.svg
:alt: Build Status
:scale: 100%
:target: https://github.com/larray-project/larray/actions/workflows/test-larray.yml
.. |docs| image:: https://readthedocs.org/projects/larray/badge/?version=stable
:alt: Documentation Status
:scale: 100%
:target: https://larray.readthedocs.io/en/latest/?badge=stable
=====================================
|build-status| |docs|
.. _start-intro:
LArray is an open source Python library that aims to provide tools for easy exploration and manipulation of
N-dimensional labelled data structures.
Library Highlights
------------------
* N-dimensional labelled array objects to store and manipulate multi-dimensional data
* I/O functions for reading and writing arrays in different formats:
CSV, Microsoft Excel, HDF5, pickle
* Arrays can be grouped into Session objects and loaded/dumped at once
* User interface with an IPython console for rapid exploration of data
* Compatible with the pandas library: Array objects can be converted into pandas DataFrame and vice versa.
.. _start-install:
Installation
============
Pre-built binaries
------------------
The easiest route to installing larray is through
`Conda <http://conda.pydata.org/miniconda.html>`_.
For all platforms installing larray can be done with::
conda install -c larray-project larray
This will install a lightweight version of larray
depending only on Numpy and Pandas libraries only.
Additional libraries are required to use the included
graphical user interface, make plots or use special
I/O functions for easy dump/load from Excel or
HDF files. Optional dependencies are described
below.
Installing larray with all optional dependencies
can be done with ::
conda install -c larray-project larrayenv
You can also first add the channel `larray-project` to
your channel list ::
conda config --add channels larray-project
and then install larray (or larrayenv) as ::
conda install larray
Building from source
--------------------
The latest release of LArray is available from
https://github.com/larray-project/larray.git
Once you have satisfied the requirements detailed below, simply run::
python setup.py install
Required Dependencies
---------------------
- Python 3.8, 3.9, 3.10 or 3.11
- `numpy <http://www.numpy.org/>`__ (1.22 or later)
- `pandas <http://pandas.pydata.org/>`__ (0.20 or later)
Optional Dependencies
---------------------
For IO (HDF, Excel)
~~~~~~~~~~~~~~~~~~~
- `pytables <http://www.pytables.org/>`__:
for working with files in HDF5 format.
- `xlwings <https://www.xlwings.org/>`__:
recommended package to get benefit of all Excel features of LArray.
Only available on Windows and Mac platforms.
- `openpyxl <http://www.python-excel.org/>`__:
recommended package for reading and writing
Excel 2010 files (ie: .xlsx)
- `xlsxwriter <http://www.python-excel.org/>`__:
alternative package for writing data, formatting
information and, in particular, charts in the
Excel 2010 format (ie: .xlsx)
- `xlrd <http://www.python-excel.org/>`__:
for reading data and formatting information from older Excel files (ie: .xls)
- `xlwt <http://www.python-excel.org/>`__:
for writing data and formatting information to older Excel files (ie: .xls)
- `larray_eurostat <https://github.com/larray-project/larray_eurostat>`__:
provides functions to easily download EUROSTAT files as larray objects.
Currently limited to TSV files.
.. _start-dependencies-gui:
For Graphical User Interface
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
LArray includes a graphical user interface to view, edit and compare arrays.
- `pyqt <https://riverbankcomputing.com/software/pyqt/intro>`__ (version 5):
required by `larray-editor` (see below).
- `pyside <https://wiki.qt.io/PySide>`__:
alternative to PyQt.
- `qtpy <https://github.com/spyder-ide/qtpy>`__:
required by `larray-editor`.
- `larray-editor <https://github.com/larray-project/larray-editor>`__:
required to use the graphical user interface associated with larray.
It assumes that `qtpy` and either `pyqt` or `pyside` are installed.
On windows, creates also a menu ``LArray`` in the Windows Start Menu.
For plotting
~~~~~~~~~~~~
- `matplotlib <http://matplotlib.org/>`__:
required for plotting.
Miscellaneous
~~~~~~~~~~~~~
- `pydantic <https://github.com/samuelcolvin/pydantic>`__:
required to use `CheckedSession`.
.. _start-documentation:
Documentation
=============
The official documentation is hosted on ReadTheDocs at http://larray.readthedocs.io/en/stable/
.. _start-get-in-touch:
Get in touch
============
- To be informed of each new release, please subscribe to the announce `mailing list`_.
- For questions, ideas or general discussion, please use the `Google Users Group`_.
- To report bugs, suggest features or view the source code, please go to our `GitHub website`_.
.. _mailing list: https://groups.google.com/d/forum/larray-announce
.. _Google Users Group: https://groups.google.com/d/forum/larray-users
.. _GitHub website: http://github.com/larray-project/larray
.. end-readme-file
.. |build-status| image:: https://github.com/larray-project/larray/actions/workflows/test-larray.yml/badge.svg
:alt: Build Status
:scale: 100%
:target: https://github.com/larray-project/larray/actions/workflows/test-larray.yml
.. |docs| image:: https://readthedocs.org/projects/larray/badge/?version=stable
:alt: Documentation Status
:scale: 100%
:target: https://larray.readthedocs.io/en/latest/?badge=stable
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
larray-0.34.2.tar.gz
(2.5 MB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file larray-0.34.2.tar.gz.
File metadata
- Download URL: larray-0.34.2.tar.gz
- Upload date:
- Size: 2.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55deb968f94431a6781e4b123bb569317f167e426e043da8cb10ff48fccde042
|
|
| MD5 |
d752b5fec1b42846204757a2c46ede31
|
|
| BLAKE2b-256 |
3271017fbfdde00b050c05d930104f08c3d256ce2a61bc1715d04ede3cfd3c65
|
File details
Details for the file larray-0.34.2-py3-none-any.whl.
File metadata
- Download URL: larray-0.34.2-py3-none-any.whl
- Upload date:
- Size: 2.6 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26fce2b35253b86fc79d3bfc325bfa780ffe7e7beb73fc6b51aa86bc69bbe192
|
|
| MD5 |
1214a644b800d59ee1df2b79edca8dcc
|
|
| BLAKE2b-256 |
02e1c1b8879cf4843f717cd957fc705a1bce2dbcd860c87ec3fe5cba71b4c77e
|