Skip to content

Commit 689eadd

Browse files
author
cgilon
committedAug 27, 2015
Update maplotlib to matlotlib
1 parent 2c647d4 commit 689eadd

File tree

3 files changed

+22
-22
lines changed

3 files changed

+22
-22
lines changed
 

‎README.html

+11-11
Original file line numberDiff line numberDiff line change
@@ -749,7 +749,7 @@ <h2>Regular Plots</h2>
749749
care of filled areas:</p>
750750
<pre class="literal-block">
751751
import numpy as np
752-
import maplotlib.pyplot as plt
752+
import matplotlib.pyplot as plt
753753

754754
n = 256
755755
X = np.linspace(-np.pi,np.pi,n,endpoint=True)
@@ -772,7 +772,7 @@ <h2>Scatter Plots</h2>
772772
care of marker size, color and transparency.</p>
773773
<pre class="literal-block">
774774
import numpy as np
775-
import maplotlib.pyplot as plt
775+
import matplotlib.pyplot as plt
776776

777777
n = 1024
778778
X = np.random.normal(0,1,n)
@@ -794,7 +794,7 @@ <h2>Bar Plots</h2>
794794
adding labels for red bars.</p>
795795
<pre class="literal-block">
796796
import numpy as np
797-
import maplotlib.pyplot as plt
797+
import matplotlib.pyplot as plt
798798

799799
n = 12
800800
X = np.arange(n)
@@ -824,7 +824,7 @@ <h2>Contour Plots</h2>
824824
care of the colormap (see <a class="reference internal" href="#colormaps">Colormaps</a> below).</p>
825825
<pre class="literal-block">
826826
import numpy as np
827-
import maplotlib.pyplot as plt
827+
import matplotlib.pyplot as plt
828828

829829
def f(x,y): return (1-x/2+x**5+y**3)*np.exp(-x**2-y**2)
830830

@@ -851,7 +851,7 @@ <h2>Imshow</h2>
851851
care of colormap, image interpolation and origin.</p>
852852
<pre class="literal-block">
853853
import numpy as np
854-
import maplotlib.pyplot as plt
854+
import matplotlib.pyplot as plt
855855

856856
def f(x,y): return (1-x/2+x**5+y**3)*np.exp(-x**2-y**2)
857857

@@ -875,7 +875,7 @@ <h2>Pie Charts</h2>
875875
care of colors and slices size.</p>
876876
<pre class="literal-block">
877877
import numpy as np
878-
import maplotlib.pyplot as plt
878+
import matplotlib.pyplot as plt
879879

880880
n = 20
881881
Z = np.random.uniform(0,1,n)
@@ -895,7 +895,7 @@ <h2>Quiver Plots</h2>
895895
care of colors and orientations.</p>
896896
<pre class="literal-block">
897897
import numpy as np
898-
import maplotlib.pyplot as plt
898+
import matplotlib.pyplot as plt
899899

900900
n = 8
901901
X,Y = np.mgrid[0:n,0:n]
@@ -911,7 +911,7 @@ <h2>Grids</h2>
911911
care of line styles.</p>
912912
<pre class="literal-block">
913913
import numpy as np
914-
import maplotlib.pyplot as plt
914+
import matplotlib.pyplot as plt
915915

916916
axes = gca()
917917
axes.set_xlim(0,4)
@@ -933,7 +933,7 @@ <h2>Multi Plots</h2>
933933
<p>Starting from the code below, try to reproduce the graphic on the right.</p>
934934
<pre class="literal-block">
935935
import numpy as np
936-
import maplotlib.pyplot as plt
936+
import matplotlib.pyplot as plt
937937

938938
plt.subplot(2,2,1)
939939
plt.subplot(2,2,3)
@@ -953,7 +953,7 @@ <h2>Polar Axis</h2>
953953
<p>Starting from the code below, try to reproduce the graphic on the right.</p>
954954
<pre class="literal-block">
955955
import numpy as np
956-
import maplotlib.pyplot as plt
956+
import matplotlib.pyplot as plt
957957

958958
plt.axes([0,0,1,1])
959959

@@ -981,7 +981,7 @@ <h2>3D Plots</h2>
981981
<p>Starting from the code below, try to reproduce the graphic on the right.</p>
982982
<pre class="literal-block">
983983
import numpy as np
984-
import maplotlib.pyplot as plt
984+
import matplotlib.pyplot as plt
985985
from mpl_toolkits.mplot3d import Axes3D
986986

987987
fig = plt.figure()

‎README.rst

+11-11
Original file line numberDiff line numberDiff line change
@@ -841,7 +841,7 @@ Starting from the code below, try to reproduce the graphic on the right taking
841841
care of filled areas::
842842

843843
import numpy as np
844-
import maplotlib.pyplot as plt
844+
import matplotlib.pyplot as plt
845845

846846
n = 256
847847
X = np.linspace(-np.pi,np.pi,n,endpoint=True)
@@ -873,7 +873,7 @@ care of marker size, color and transparency.
873873
::
874874

875875
import numpy as np
876-
import maplotlib.pyplot as plt
876+
import matplotlib.pyplot as plt
877877

878878
n = 1024
879879
X = np.random.normal(0,1,n)
@@ -905,7 +905,7 @@ adding labels for red bars.
905905
::
906906

907907
import numpy as np
908-
import maplotlib.pyplot as plt
908+
import matplotlib.pyplot as plt
909909

910910
n = 12
911911
X = np.arange(n)
@@ -943,7 +943,7 @@ care of the colormap (see `Colormaps`_ below).
943943
::
944944

945945
import numpy as np
946-
import maplotlib.pyplot as plt
946+
import matplotlib.pyplot as plt
947947

948948
def f(x,y): return (1-x/2+x**5+y**3)*np.exp(-x**2-y**2)
949949

@@ -980,7 +980,7 @@ care of colormap, image interpolation and origin.
980980
::
981981

982982
import numpy as np
983-
import maplotlib.pyplot as plt
983+
import matplotlib.pyplot as plt
984984

985985
def f(x,y): return (1-x/2+x**5+y**3)*np.exp(-x**2-y**2)
986986

@@ -1011,7 +1011,7 @@ care of colors and slices size.
10111011
::
10121012

10131013
import numpy as np
1014-
import maplotlib.pyplot as plt
1014+
import matplotlib.pyplot as plt
10151015

10161016
n = 20
10171017
Z = np.random.uniform(0,1,n)
@@ -1039,7 +1039,7 @@ care of colors and orientations.
10391039
::
10401040

10411041
import numpy as np
1042-
import maplotlib.pyplot as plt
1042+
import matplotlib.pyplot as plt
10431043

10441044
n = 8
10451045
X,Y = np.mgrid[0:n,0:n]
@@ -1064,7 +1064,7 @@ care of line styles.
10641064
::
10651065

10661066
import numpy as np
1067-
import maplotlib.pyplot as plt
1067+
import matplotlib.pyplot as plt
10681068

10691069
axes = gca()
10701070
axes.set_xlim(0,4)
@@ -1094,7 +1094,7 @@ Starting from the code below, try to reproduce the graphic on the right.
10941094
::
10951095

10961096
import numpy as np
1097-
import maplotlib.pyplot as plt
1097+
import matplotlib.pyplot as plt
10981098

10991099
plt.subplot(2,2,1)
11001100
plt.subplot(2,2,3)
@@ -1122,7 +1122,7 @@ Starting from the code below, try to reproduce the graphic on the right.
11221122
::
11231123

11241124
import numpy as np
1125-
import maplotlib.pyplot as plt
1125+
import matplotlib.pyplot as plt
11261126

11271127
plt.axes([0,0,1,1])
11281128

@@ -1159,7 +1159,7 @@ Starting from the code below, try to reproduce the graphic on the right.
11591159
::
11601160

11611161
import numpy as np
1162-
import maplotlib.pyplot as plt
1162+
import matplotlib.pyplot as plt
11631163
from mpl_toolkits.mplot3d import Axes3D
11641164

11651165
fig = plt.figure()

‎scripts/.DS_Store

-5 KB
Binary file not shown.

0 commit comments

Comments
 (0)
Please sign in to comment.