lehrex

Support the research during the Lehrexkursion.


License
MIT
Install
pip install lehrex==1.1.1

Documentation

PyPI versionBuild Status

lehrex

Python package to support the research during the annual Lehrexkursion at Universität Hamburg.

Table of Contents

Installation

Stable release

For standard Python installations, install the latest stable version using pip:

pip install lehrex

Development

If you want to make local changes to the package, clone the repository and install the package locally:

git clone https://github.com/lkluft/lehrex.git
cd lehrex
pip install --editable .

Package structure

  • lehrex.csv: Functions to read and write CSV files (e.g. MASTER.txt).
  • lehrex.plots: General plotting routines like timeseries or heatmaps.
  • lehrex.utils: Basic utility functions (e.g. combining data dictionaries).

Examples

The most common use case is reading data files into pd.DataFrame:

import lehrex as lex

dataframe = lex.read('MASTER.txt')

The repository contains several examples to show some more advanced applications. Resulting plots are also included.