.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "_gallery/line_collection/line_stack.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__gallery_line_collection_line_stack.py: Line Stack ========== Example showing how to plot a stack of lines .. GENERATED FROM PYTHON SOURCE LINES 7-38 .. image-sg:: /_gallery/line_collection/images/sphx_glr_line_stack_001.webp :alt: line stack :srcset: /_gallery/line_collection/images/sphx_glr_line_stack_001.webp :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out .. code-block:: none /home/runner/work/fastplotlib/fastplotlib/fastplotlib/graphics/_features/_base.py:18: UserWarning: casting float64 array to float32 warn(f"casting {array.dtype} array to float32") | .. code-block:: Python # test_example = true import numpy as np import fastplotlib as fpl xs = np.linspace(0, np.pi * 10, 100) # sine wave ys = np.sin(xs) data = np.column_stack([xs, ys]) multi_data = np.stack([data] * 10) figure = fpl.Figure(size=(700, 560)) line_stack = figure[0, 0].add_line_stack( multi_data, # shape: (10, 100, 2), i.e. [n_lines, n_points, xy] cmap="jet", # applied along n_lines thickness=5, separation=1, # spacing between lines along the separation axis, default separation along "y" axis ) figure.show(maintain_aspect=False) # NOTE: `if __name__ == "__main__"` is NOT how to use fastplotlib interactively # please see our docs for using fastplotlib interactively in ipython and jupyter if __name__ == "__main__": print(__doc__) fpl.run() .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 0.798 seconds) .. _sphx_glr_download__gallery_line_collection_line_stack.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: line_stack.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: line_stack.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: line_stack.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_