.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples/loading_multiple.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code. .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_examples_loading_multiple.py: Loading multiple data files of the same format type =================================================== Processing data found across multiple files and performing analysis on them .. GENERATED FROM PYTHON SOURCE LINES 8-10 Skutils loaders can only open one file per "loader object", meaning that you need to "instantiate" a new loader for every file you open, here's an example .. GENERATED FROM PYTHON SOURCE LINES 10-18 .. code-block:: Python import skutils import matplotlib.pyplot as plt import numpy as np # There will be a planned capture of real data for DATA_FILES = [] .. GENERATED FROM PYTHON SOURCE LINES 19-20 Iterate over every file .. GENERATED FROM PYTHON SOURCE LINES 20-42 .. code-block:: Python # A list of dictionaries being built for per-channel histogramming event_pulseheights = [{}, {}] event_count = 0 # Iterate over the files for file in DATA_FILES: loader = skutils.EventCSVLoader(file) # Iterate over each event in the loader for event in loader: event_count += 1 waveform = event.wavedata() # Perform the per-channel histogram creation for i, data in enumerate(event.channel_data): if data.has_wave: wave = data.wave assert wave is not None bucket = int(np.max(wave)) if bucket in event_pulseheights[i]: event_pulseheights[i][bucket] += 1 else: event_pulseheights[i][bucket] = 1 .. GENERATED FROM PYTHON SOURCE LINES 43-44 Build the histogram .. GENERATED FROM PYTHON SOURCE LINES 44-51 .. code-block:: Python histogram_list = [] for channel in event_pulseheights: build_histo = [0 for _ in range(2**15)] for key in channel: build_histo[key] = channel[key] histogram_list.append(build_histo) .. GENERATED FROM PYTHON SOURCE LINES 52-53 Plot all histogram elements .. GENERATED FROM PYTHON SOURCE LINES 53-59 .. code-block:: Python for i, item in enumerate(histogram_list): plt.plot(item, label=f"Channel data {i}") plt.ylabel("Histogram quantity") plt.xlabel("Value counted") plt.show() .. image-sg:: /auto_examples/images/sphx_glr_loading_multiple_001.png :alt: loading multiple :srcset: /auto_examples/images/sphx_glr_loading_multiple_001.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 0.087 seconds) .. _sphx_glr_download_auto_examples_loading_multiple.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: loading_multiple.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: loading_multiple.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: loading_multiple.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_