summaryrefslogtreecommitdiff
path: root/doc/source/user/plot_face.py
diff options
context:
space:
mode:
authormelissawm <melissawm@gmail.com>2020-02-21 11:39:18 -0300
committermelissawm <melissawm@gmail.com>2020-02-21 11:39:18 -0300
commitcc6537b2281a088448df73bfc3d7aec5ab80f1dc (patch)
tree2312608ba6a382d64702a308bdb3c3e70ea775f5 /doc/source/user/plot_face.py
parent6b81184f6ca54ea5c45fcb00ce1158fdcbb4db42 (diff)
downloadnumpy-cc6537b2281a088448df73bfc3d7aec5ab80f1dc.tar.gz
Added plot scripts and reworded to respond to PR comments.
Diffstat (limited to 'doc/source/user/plot_face.py')
-rw-r--r--doc/source/user/plot_face.py5
1 files changed, 5 insertions, 0 deletions
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)