.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "_gallery/scatter/scatter_colorslice_iris.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_scatter_scatter_colorslice_iris.py: Iris Scatter Plot Color Slicing =============================== Example showing color slice for scatter plot. .. GENERATED FROM PYTHON SOURCE LINES 7-38 .. image-sg:: /_gallery/scatter/images/sphx_glr_scatter_colorslice_iris_001.webp :alt: scatter colorslice iris :srcset: /_gallery/scatter/images/sphx_glr_scatter_colorslice_iris_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 fastplotlib as fpl from sklearn import datasets figure = fpl.Figure(size=(700, 560)) data = datasets.load_iris()["data"] n_points = 50 colors = ["yellow"] * n_points + ["cyan"] * n_points + ["magenta"] * n_points scatter_graphic = figure[0, 0].add_scatter( data=data[:, :-1], sizes=6, alpha=0.7, colors=colors # use colors from the list of strings ) figure.show() scatter_graphic.colors[0:75] = "red" scatter_graphic.colors[75:150] = "white" scatter_graphic.colors[::2] = "blue" if __name__ == "__main__": print(__doc__) fpl.loop.run() .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 0.962 seconds) .. _sphx_glr_download__gallery_scatter_scatter_colorslice_iris.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: scatter_colorslice_iris.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: scatter_colorslice_iris.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: scatter_colorslice_iris.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_