LinePlot

class nata.plots.types.LinePlot(label: Optional[str] = None, data: nata.plots.data.PlotData = None, axes: Any = None, ls: Optional[str] = None, lw: Optional[float] = 1, color: Optional[str] = None, alpha: Optional[float] = None, marker: Optional[str] = None, ms: Optional[float] = None, antialiased: Optional[bool] = True)

Line plot class.

Parameters
  • ls (str, optional) – Linestyle of the line. See matplotlib.lines.Line2D.set_linestyle() for available options.

  • lw (float, optional) – Line width in points. If not provided, defaults to 1.

  • color (str, optional) – Color of the line. See matplotlib.colors for available options.

  • alpha (float, optional) – Line alpha value. Must be between 0 and 1.

  • marker (str, optional) – Marker to be used in defined line points. See matplotlib.markers for available options.

  • ms (float, optional) – Marker size in points.

  • antialiased (bool, optional) – Controls wether the plot should be antialiased. If not provided, defaults to True.