Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 69327fb

Browse files
committed
DOC: rename stylefile
1 parent b40ed41 commit 69327fb

24 files changed

+23
-23
lines changed

plot_types/A_basic/a_plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import matplotlib.pyplot as plt
88
import numpy as np
99

10-
plt.style.use('cheatsheet_gallery')
10+
plt.style.use('mpl_plot_gallery')
1111

1212
# make data
1313
X = np.linspace(0, 10, 100)

plot_types/A_basic/b_scatter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import matplotlib.pyplot as plt
77
import numpy as np
88

9-
plt.style.use('cheatsheet_gallery')
9+
plt.style.use('mpl_plot_gallery')
1010

1111
# make the data
1212
np.random.seed(3)

plot_types/A_basic/c_bar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""
66
import matplotlib.pyplot as plt
77
import numpy as np
8-
plt.style.use('cheatsheet_gallery')
8+
plt.style.use('mpl_plot_gallery')
99

1010
# make data:
1111
np.random.seed(3)

plot_types/A_basic/d_stem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import matplotlib.pyplot as plt
77
import numpy as np
88

9-
plt.style.use('cheatsheet_gallery')
9+
plt.style.use('mpl_plot_gallery')
1010

1111
# make data
1212
np.random.seed(3)

plot_types/A_basic/e_step.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import matplotlib.pyplot as plt
77
import numpy as np
88

9-
plt.style.use('cheatsheet_gallery')
9+
plt.style.use('mpl_plot_gallery')
1010

1111
# make data
1212
np.random.seed(3)

plot_types/A_basic/f_pie.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import matplotlib.pyplot as plt
88
import numpy as np
99

10-
plt.style.use('cheatsheet_gallery')
10+
plt.style.use('mpl_plot_gallery')
1111

1212

1313
# make data

plot_types/A_basic/g_fill_between.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import matplotlib.pyplot as plt
77
import numpy as np
88

9-
plt.style.use('cheatsheet_gallery')
9+
plt.style.use('mpl_plot_gallery')
1010

1111
# make data
1212
np.random.seed(1)

plot_types/B_arrays/a_imshow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import matplotlib.pyplot as plt
88
import numpy as np
99

10-
plt.style.use('cheatsheet_gallery')
10+
plt.style.use('mpl_plot_gallery')
1111

1212
# make data
1313
X, Y = np.meshgrid(np.linspace(-3, 3, 256), np.linspace(-3, 3, 256))

plot_types/B_arrays/b_pcolormesh.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import matplotlib.pyplot as plt
1111
import numpy as np
1212

13-
plt.style.use('cheatsheet_gallery')
13+
plt.style.use('mpl_plot_gallery')
1414

1515
# make full-res data
1616
X, Y = np.meshgrid(np.linspace(-3, 3, 256), np.linspace(-3, 3, 256))

plot_types/B_arrays/c_contourf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import matplotlib.pyplot as plt
77
import numpy as np
88

9-
plt.style.use('cheatsheet_gallery')
9+
plt.style.use('mpl_plot_gallery')
1010

1111
# make data
1212
X, Y = np.meshgrid(np.linspace(-3, 3, 256), np.linspace(-3, 3, 256))

plot_types/B_arrays/d_quiver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import matplotlib.pyplot as plt
77
import numpy as np
88

9-
plt.style.use('cheatsheet_gallery')
9+
plt.style.use('mpl_plot_gallery')
1010

1111
# make data
1212
T = np.linspace(0, 2*np.pi, 8)

plot_types/B_arrays/e_streamplot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import matplotlib.pyplot as plt
77
import numpy as np
88

9-
plt.style.use('cheatsheet_gallery')
9+
plt.style.use('mpl_plot_gallery')
1010

1111
# make a stream function:
1212
X, Y = np.meshgrid(np.linspace(-3, 3, 256), np.linspace(-3, 3, 256))

plot_types/C_stats/a_hist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import matplotlib.pyplot as plt
77
import numpy as np
88

9-
plt.style.use('cheatsheet_gallery')
9+
plt.style.use('mpl_plot_gallery')
1010

1111
# make data
1212
np.random.seed(1)

plot_types/C_stats/b_boxplot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import matplotlib.pyplot as plt
77
import numpy as np
88

9-
plt.style.use('cheatsheet_gallery')
9+
plt.style.use('mpl_plot_gallery')
1010

1111
# make data:
1212
np.random.seed(10)

plot_types/C_stats/c_errorbar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import matplotlib.pyplot as plt
77
import numpy as np
88

9-
plt.style.use('cheatsheet_gallery')
9+
plt.style.use('mpl_plot_gallery')
1010

1111
# make data:
1212
np.random.seed(1)

plot_types/C_stats/d_violin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import matplotlib.pyplot as plt
77
import numpy as np
88

9-
plt.style.use('cheatsheet_gallery')
9+
plt.style.use('mpl_plot_gallery')
1010

1111
# make data:
1212
np.random.seed(10)

plot_types/C_stats/e_barbs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import matplotlib.pyplot as plt
77
import numpy as np
88

9-
plt.style.use('cheatsheet_gallery')
9+
plt.style.use('mpl_plot_gallery')
1010

1111
# make data:
1212
np.random.seed(1)

plot_types/C_stats/f_eventplot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import matplotlib.pyplot as plt
77
import numpy as np
88

9-
plt.style.use('cheatsheet_gallery')
9+
plt.style.use('mpl_plot_gallery')
1010

1111
# make data:
1212
np.random.seed(1)

plot_types/C_stats/g_hist2d.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import matplotlib.pyplot as plt
77
import numpy as np
88

9-
plt.style.use('cheatsheet_gallery')
9+
plt.style.use('mpl_plot_gallery')
1010

1111
# make data: correlated + noise
1212
np.random.seed(1)

plot_types/C_stats/h_hexbin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import matplotlib.pyplot as plt
77
import numpy as np
88

9-
plt.style.use('cheatsheet_gallery')
9+
plt.style.use('mpl_plot_gallery')
1010

1111
# make data: correlated + noise
1212
np.random.seed(1)

plot_types/D_unstructured/a_tricontour.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import matplotlib.pyplot as plt
77
import numpy as np
88

9-
plt.style.use('cheatsheet_gallery')
9+
plt.style.use('mpl_plot_gallery')
1010

1111
# make structured data
1212
X, Y = np.meshgrid(np.linspace(-3, 3, 256), np.linspace(-3, 3, 256))

plot_types/D_unstructured/b_tripcolor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import matplotlib.pyplot as plt
77
import numpy as np
88

9-
plt.style.use('cheatsheet_gallery')
9+
plt.style.use('mpl_plot_gallery')
1010

1111
# make structured data
1212
X, Y = np.meshgrid(np.linspace(-3, 3, 256), np.linspace(-3, 3, 256))

plot_types/D_unstructured/c_triplot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import matplotlib.pyplot as plt
77
import numpy as np
88

9-
plt.style.use('cheatsheet_gallery')
9+
plt.style.use('mpl_plot_gallery')
1010

1111
# make structured data
1212
X, Y = np.meshgrid(np.linspace(-3, 3, 256), np.linspace(-3, 3, 256))

0 commit comments

Comments
 (0)