.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "examples/dataset/visualization/plot_yvsx.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_examples_dataset_visualization_plot_yvsx.py: YvsX ==== .. GENERATED FROM PYTHON SOURCE LINES 26-40 .. code-block:: Python from __future__ import annotations from numpy import linspace from numpy import pi from numpy import sin from gemseo import configure_logger from gemseo.datasets.dataset import Dataset from gemseo.post.dataset.yvsx import YvsX configure_logger() .. rst-class:: sphx-glr-script-out .. code-block:: none .. GENERATED FROM PYTHON SOURCE LINES 41-43 Build a dataset --------------- .. GENERATED FROM PYTHON SOURCE LINES 43-50 .. code-block:: Python inputs = linspace(0, 1, 10)[:, None] outputs = sin(2 * pi * inputs) dataset = Dataset() dataset.add_variable("x", inputs, "inputs") dataset.add_variable("y", outputs, "outputs") .. GENERATED FROM PYTHON SOURCE LINES 51-54 Plot y vs x ----------- We can use the :class:`.YvsX` plot .. GENERATED FROM PYTHON SOURCE LINES 54-57 .. code-block:: Python plot = YvsX(dataset, "x", "y") plot.linestyle = "--o" plot.execute(save=False, show=True) .. image-sg:: /examples/dataset/visualization/images/sphx_glr_plot_yvsx_001.png :alt: plot yvsx :srcset: /examples/dataset/visualization/images/sphx_glr_plot_yvsx_001.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out .. code-block:: none [
] .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 0.139 seconds) .. _sphx_glr_download_examples_dataset_visualization_plot_yvsx.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_yvsx.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_yvsx.py ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_