Python package to support the research during the annual Lehrexkursion at Universität Hamburg.
For standard Python installations, install the latest stable version using pip
:
pip install lehrex
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 .
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).
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.