GnuplotEx.PlotList (gnuplot_ex v0.5.0)
Represents a comma-separated list of plot specifications in gnuplot syntax.
Used for specifying multiple plot series in a single plot command.
Example
iex> alias GnuplotEx.PlotList
iex> list = %PlotList{items: [["-", :with, :points], ["-", :with, :lines]]}
iex> GnuplotEx.Command.format(list)
~s("-" with points, "-" with lines)
Summary
Types
@type t() :: %GnuplotEx.PlotList{items: [list()]}