Created
April 7, 2023 18:54
-
-
Save DenshellDenejour/a90b12d922382bded6641601123760c5 to your computer and use it in GitHub Desktop.
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
| import sys | |
| import matplotlib | |
| matplotlib.use('Agg') | |
| import matplotlib.pyplot as plt | |
| import numpy as np | |
| ypoints = np.array([5, 8, 1, 17]) | |
| plt.plot(ypoints, linestyle = 'solid') | |
| plt.show() | |
| plt.savefig(sys.stdout.buffer) | |
| sys.stdout.flush() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment