Created
September 18, 2017 15:47
-
-
Save pierdom/85496f415f649269bde77a0ffb9558a7 to your computer and use it in GitHub Desktop.
[Horizontal/Vertical straight lines on Matplotlib] #matplotlib #python #visualization
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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