Note
Go to the end to download the full example code.
Lines#
from __future__ import annotations
from numpy import cos
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.lines import Lines
configure_logger()
<RootLogger root (INFO)>
Build a dataset#
inputs = linspace(0, 1, 10)[:, None]
outputs_1 = sin(2 * pi * inputs)
outputs_2 = cos(2 * pi * inputs)
dataset = Dataset()
dataset.add_variable("x", inputs, "inputs")
dataset.add_variable("y1", outputs_1, "outputs")
dataset.add_variable("y2", outputs_2, "outputs")
Plot y1 and y2#
We can use the Lines
plot.
plot = Lines(dataset, variables=["y1", "y2"])
plot.linestyle = ["--", "-"]
plot.execute(save=False, show=True)
[<Figure size 640x480 with 1 Axes>]
Total running time of the script: (0 minutes 0.230 seconds)