Note
Go to the end to download the full example code
YvsX¶
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()
<RootLogger root (INFO)>
Build a dataset¶
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")
Plot y vs x¶
We can use the YvsX
plot
plot = YvsX(dataset, "x", "y")
plot.linestyle = "--o"
plot.execute(save=False, show=True)
[<Figure size 640x480 with 1 Axes>]
Total running time of the script: (0 minutes 0.140 seconds)