Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

How to draw line

Code Block
import matplotlib.lines  as lines
line = lines.Line2D(arrx, arry, linewidth=1, color='r')   
axes.add_artist(line)

...