octadist.plot¶
-
class
octadist.src.plot.
Plot
(*args, name1='Var1', name2='Var2')[source]¶ Relationship plot between Zeta and Sigma parameters.
Parameters: - args[0] (list) – List of data set 1 (data1).
- = list (args[0]) – List of data set 2 (data2).
- = str, optional (name2) – Name of data set 1.
- = str, optional – Name of data set 2.
Examples
>>> data1 = [1, 2, 3, 4, 5] >>> data2 = [1, 2, 3, 4, 5] >>> test = Plot(data1, data2, name1="Data 1", name2="Data 2") >>> test.add_point() >>> test.add_text() >>> test.add_legend() >>> test.show_plot()