{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Loading the raw data is slow\n", "\n", "As several text files have to be read and parsed, this is rather time consuming.\n", "\n", "See [Loading of data](load2.ipynb) for a more convienent way to work with EMC3 data." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import xemc3" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "CPU times: user 1min 1s, sys: 301 ms, total: 1min 1s\n", "Wall time: 1min 2s\n" ] } ], "source": [ "%%time\n", "\n", "ds = xemc3.load.all(\"../../example-data/emc3_example/\")" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.9.6" } }, "nbformat": 4, "nbformat_minor": 4 }