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
+15-3Lines changed: 15 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,8 @@
5
5
"metadata": {},
6
6
"source": [
7
7
"# Using different formulations of plotting positions\n",
8
-
"### Looking at normal vs Weibull scales + Cunnane vs Weibull plotting positions\n",
8
+
"\n",
9
+
"## Computing plotting positions\n",
9
10
"\n",
10
11
"When drawing a percentile, quantile, or probability plot, the potting positions of ordered data must be computed.\n",
11
12
"\n",
@@ -102,6 +103,13 @@
102
103
" ax2.set_ylabel('Weibull Probability Scale')"
103
104
]
104
105
},
106
+
{
107
+
"cell_type": "markdown",
108
+
"metadata": {},
109
+
"source": [
110
+
"## Normal vs Weibull scales and Cunnane vs Weibull plotting positions"
111
+
]
112
+
},
105
113
{
106
114
"cell_type": "markdown",
107
115
"metadata": {},
@@ -173,6 +181,8 @@
173
181
"source": [
174
182
"This demostrates that the different formulations of the plotting positions vary most at the extreme values of the dataset. \n",
175
183
"\n",
184
+
"### Hazen plotting positions\n",
185
+
"\n",
176
186
"Next, let's compare the Hazen/Type 5 (α=0.5, β=0.5) formulation to Cunnane.\n",
177
187
"Hazen plotting positions (shown as red triangles) represet a piece-wise linear interpolation of the emperical cumulative distribution function of the dataset.\n",
178
188
"\n",
@@ -205,6 +215,8 @@
205
215
"cell_type": "markdown",
206
216
"metadata": {},
207
217
"source": [
218
+
"### Summary\n",
219
+
"\n",
208
220
"At the risk of showing a very cluttered and hard to read figure, let's throw all three on the same normal probability scale:"
Copy file name to clipboardExpand all lines: docs/tutorial/getting_started.ipynb
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -74,6 +74,8 @@
74
74
"source": [
75
75
"## Background\n",
76
76
"\n",
77
+
"### Built-in matplotlib scales\n",
78
+
"\n",
77
79
"To the casual user, you can set matplotlib scales to either \"linear\" or \"log\" (logarithmic). There are others (e.g., logit, symlog), but I haven't seen them too much in the wild.\n",
0 commit comments