Skip to content

Instantly share code, notes, and snippets.

@pierdom
Created September 18, 2017 15:47
Show Gist options
  • Select an option

  • Save pierdom/85496f415f649269bde77a0ffb9558a7 to your computer and use it in GitHub Desktop.

Select an option

Save pierdom/85496f415f649269bde77a0ffb9558a7 to your computer and use it in GitHub Desktop.
[Horizontal/Vertical straight lines on Matplotlib] #matplotlib #python #visualization
# horizontal line
ax.axhline(0.5, color="gray")
# vertical line
ax.axvline(0.5, color="gray")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment