From cc6537b2281a088448df73bfc3d7aec5ab80f1dc Mon Sep 17 00:00:00 2001 From: melissawm Date: Fri, 21 Feb 2020 11:39:18 -0300 Subject: Added plot scripts and reworded to respond to PR comments. --- doc/source/user/plot_face.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 doc/source/user/plot_face.py (limited to 'doc/source/user/plot_face.py') diff --git a/doc/source/user/plot_face.py b/doc/source/user/plot_face.py new file mode 100644 index 000000000..c0891e770 --- /dev/null +++ b/doc/source/user/plot_face.py @@ -0,0 +1,5 @@ +from scipy import misc +import matplotlib.pyplot as plt + +img = misc.face() +plt.imshow(img) -- cgit v1.2.1