.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "_gallery/misc/scatter_animation.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_misc_scatter_animation.py: Scatter Animation Data ====================== Example showing animation with a scatter plot. .. GENERATED FROM PYTHON SOURCE LINES 7-58 .. image-sg:: /_gallery/misc/images/sphx_glr_scatter_animation_001.webp :alt: scatter animation :srcset: /_gallery/misc/images/sphx_glr_scatter_animation_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 = false import fastplotlib as fpl import numpy as np # create a random distribution of 10,000 xyz coordinates n_points = 10_000 # dimensions always have to be [n_points, xyz] dims = (n_points, 3) clouds_offset = 15 # create some random clouds normal = np.random.normal(size=dims, scale=5) # stack the data into a single array cloud = np.vstack( [ normal - clouds_offset, normal, normal + clouds_offset, ] ) # color each of them separately colors = ["yellow"] * n_points + ["cyan"] * n_points + ["magenta"] * n_points # create plot figure = fpl.Figure(size=(700, 560)) subplot_scatter = figure[0, 0] # use an alpha value since this will be a lot of points scatter_graphic = subplot_scatter.add_scatter(data=cloud, sizes=3, colors=colors, alpha=0.6) def update_points(subplot): # move every point by a small amount deltas = np.random.normal(size=scatter_graphic.data.value.shape, loc=0, scale=0.15) scatter_graphic.data = scatter_graphic.data.value + deltas subplot_scatter.add_animations(update_points) figure.show() # 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 12.430 seconds) .. _sphx_glr_download__gallery_misc_scatter_animation.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: scatter_animation.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: scatter_animation.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: scatter_animation.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_