You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/tutorial/closer_look_at_plot_pos.ipynb
+3-3
Original file line number
Diff line number
Diff line change
@@ -137,7 +137,7 @@
137
137
"metadata": {},
138
138
"source": [
139
139
"Now let's create probability plots on both Weibull and normal probability scales.\n",
140
-
"Additionally, we'll compute the plotting positions two different but commone ways for each plot.\n",
140
+
"Additionally, we'll compute the plotting positions two different but common ways for each plot.\n",
141
141
"\n",
142
142
"First, in blue circles, we'll show the data with Weibull (α=0, β=0) plotting positions.\n",
143
143
"Weibull plotting positions are commonly use in fields such as hydrology and water resources engineering.\n",
@@ -179,12 +179,12 @@
179
179
"cell_type": "markdown",
180
180
"metadata": {},
181
181
"source": [
182
-
"This demostrates that the different formulations of the plotting positions vary most at the extreme values of the dataset. \n",
182
+
"This demonstrates that the different formulations of the plotting positions vary most at the extreme values of the dataset. \n",
183
183
"\n",
184
184
"### Hazen plotting positions\n",
185
185
"\n",
186
186
"Next, let's compare the Hazen/Type 5 (α=0.5, β=0.5) formulation to Cunnane.\n",
187
-
"Hazen plotting positions (shown as red triangles) represet a piece-wise linear interpolation of the emperical cumulative distribution function of the dataset.\n",
187
+
"Hazen plotting positions (shown as red triangles) represent a piece-wise linear interpolation of the empirical cumulative distribution function of the dataset.\n",
188
188
"\n",
189
189
"Given the values of α and β=0.5 vary only slightly from the Cunnane values, the plotting position predictably are similar."
Copy file name to clipboardexpand all lines: docs/tutorial/closer_look_at_viz.ipynb
+8-8
Original file line number
Diff line number
Diff line change
@@ -123,7 +123,7 @@
123
123
"source": [
124
124
"### Quantile plots\n",
125
125
"\n",
126
-
"Quantile plots are similar to propbabilty plots.\n",
126
+
"Quantile plots are similar to probability plots.\n",
127
127
"The main differences is that plotting positions are converted into quantiles or $Z$-scores based on a probability distribution.\n",
128
128
"The default distribution is the standard-normal distribution.\n",
129
129
"Using a different distribution is covered further down.\n",
@@ -215,16 +215,16 @@
215
215
"cell_type": "markdown",
216
216
"metadata": {},
217
217
"source": [
218
-
"In these case of P-P plots and simple Q-Q plots, the `probplot` function doesn't offer much convencience compared to writing raw matplotlib commands.\n",
218
+
"In these case of P-P plots and simple Q-Q plots, the `probplot` function doesn't offer much convenience compared to writing raw matplotlib commands.\n",
219
219
"However, this changes when you start making probability plots and using more advanced options.\n",
220
220
"\n",
221
221
"### Probability plots\n",
222
222
"\n",
223
223
"Visually, the curve of plots on probability and quantile scales should be the same.\n",
224
-
"The difference is that the axis ticks are placed and labeled based on non-exceedance probailities rather than the more abstract quantiles of the distribution.\n",
224
+
"The difference is that the axis ticks are placed and labeled based on non-exceedance probabilities rather than the more abstract quantiles of the distribution.\n",
225
225
"\n",
226
226
"Unsurprisingly, a picture explains this much better.\n",
227
-
"Let's build off of the previos plot:"
227
+
"Let's build off of the previous plot:"
228
228
]
229
229
},
230
230
{
@@ -384,7 +384,7 @@
384
384
" plottype='qq',\n",
385
385
" probax='x',\n",
386
386
" problabel='Theoretical Quantiles',\n",
387
-
" datalabel='Emperical Quantiles',\n",
387
+
" datalabel='Empirical Quantiles',\n",
388
388
" scatter_kws=dict(label='Bill amounts')\n",
389
389
")\n",
390
390
"\n",
@@ -541,7 +541,7 @@
541
541
"cell_type": "raw",
542
542
"metadata": {},
543
543
"source": [
544
-
"The ``probplot`` function calls the :func:`viz.plot_plos` function to compute each dataset's plotting positions.\n",
544
+
"The ``probplot`` function calls the :func:`viz.plot_pos` function to compute each dataset's plotting positions.\n",
545
545
"\n",
546
546
"You should read that function's docstring for more detailed information.\n",
547
547
"But the high-level overview is that there are a couple of parameters (``alpha`` and ``beta``) that you can tweak in the plotting positions calculation.\n",
0 commit comments