Skip to content

Commit e06fe7c

Browse files
committed
remove superfluous greek letters
1 parent ac4f593 commit e06fe7c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/tutorial/closer_look_at_plot_pos.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@
154154
},
155155
"outputs": [],
156156
"source": [
157-
"w_opts = {'label': 'Weibull (α=0, β=0)', 'marker': 'o', 'markeredgecolor': 'b'}\n",
158-
"c_opts = {'label': 'Cunnane (α=0.4, β=0.4)', 'marker': 's', 'markeredgecolor': 'g'}\n",
157+
"w_opts = {'label': 'Weibull (a=0, b=0)', 'marker': 'o', 'markeredgecolor': 'b'}\n",
158+
"c_opts = {'label': 'Cunnane (a=0.4, b=0.4)', 'marker': 's', 'markeredgecolor': 'g'}\n",
159159
"\n",
160160
"common_opts = {\n",
161161
" 'markerfacecolor': 'none',\n",
@@ -198,7 +198,7 @@
198198
},
199199
"outputs": [],
200200
"source": [
201-
"h_opts = {'label': 'Hazen (α=0.5, β=0.5)', 'marker': '^', 'markeredgecolor': 'r'}\n",
201+
"h_opts = {'label': 'Hazen (a=0.5, b=0.5)', 'marker': '^', 'markeredgecolor': 'r'}\n",
202202
"fig, (ax1, ax2) = pyplot.subplots(figsize=(10, 8), ncols=2, sharex=True, sharey=False)\n",
203203
"\n",
204204
"for dist, ax in zip([None, weibull], [ax1, ax2]):\n",

docs/tutorial/getting_started.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -208,11 +208,11 @@
208208
"\n",
209209
"beta1 = stats.beta(a=3, b=2)\n",
210210
"ax2.set_xscale('prob', dist=beta1)\n",
211-
"ax2.set_xlabel('Beta probability scale (α=3, β=2)')\n",
211+
"ax2.set_xlabel('Beta probability scale (a=3, b=2)')\n",
212212
"\n",
213213
"beta2 = stats.beta(a=2, b=7)\n",
214214
"ax3.set_xscale('prob', dist=beta2)\n",
215-
"ax3.set_xlabel('Beta probability scale (α=2, β=7)')\n",
215+
"ax3.set_xlabel('Beta probability scale (a=2, b=7)')\n",
216216
"\n",
217217
"ax4.set_xticks(ax1.get_xticks()[12:-12])\n",
218218
"ax4.set_xlabel('Linear scale (for reference)')\n",

docs/tutorial/make.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def convert(nbfile):
4444
for img_name, img_data in images['outputs'].items():
4545
img_path = os.path.join(img_folder, img_name)
4646
with open(img_path, 'wb') as img:
47-
print('\twriting' + img_path)
47+
print('\twriting ' + img_path)
4848
img.write(img_data)
4949

5050

0 commit comments

Comments
 (0)