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
"In this equation, α and β can take on several values. Common values are described below:"
17
+
]
18
+
},
19
+
{
20
+
"cell_type": "raw",
21
+
"metadata": {},
22
+
"source": [
23
+
"\"type 4\" (α=0, β=1)\n",
24
+
" Linear interpolation of the empirical CDF.\n",
25
+
"\"type 5\" or \"hazen\" (α=0.5, β=0.5)\n",
26
+
" Piecewise linear interpolation.\n",
27
+
"\"type 6\" or \"weibull\" (α=0, β=0)\n",
28
+
" Weibull plotting positions. Unbiased exceedance probability for all distributions.\n",
29
+
" Recommended for hydrologic applications.\n",
30
+
"\"type 7\" (α=1, β=1)\n",
31
+
" The default values in R.\n",
32
+
" Not recommended with probability scales as the min and max data points get plotting positions of 0 and 1, respectively, and therefore cannot be shown.\n",
33
+
"\"type 8\" (α=1/3, β=1/3)\n",
34
+
" Approximately median-unbiased.\n",
35
+
"\"type 9\" or \"blom\" (α=0.375, β=0.375)\n",
36
+
" Approximately unbiased positions if the data are normally distributed.\n",
37
+
"\"median\" (α=0.3175, β=0.3175)\n",
38
+
" Median exceedance probabilities for all distributions (used in ``scipy.stats.probplot``).\n",
39
+
"\"apl\" or \"pwm\" (α=0.35, β=0.35)\n",
40
+
" Used with probability-weighted moments.\n",
41
+
"\"cunnane\" (α=0.4, β=0.4)\n",
42
+
" Nearly unbiased quantiles for normally distributed data.\n",
43
+
" This is the default value.\n",
44
+
"\"gringorten\" (α=0.44, β=0.44)\n",
45
+
" Used for Gumble distributions."
46
+
]
47
+
},
48
+
{
49
+
"cell_type": "markdown",
50
+
"metadata": {},
51
+
"source": [
52
+
"The purpose of this tutorial is to show how the selected α and β can alter the shape of a probability plot.\n",
53
+
"\n",
54
+
"First let's get some analytical setup out of the way..."
"This demostrates that the different formulations of the plotting positions vary most at the extreme values of the dataset. \n",
172
+
"\n",
173
+
"Next, let's compare the HAzen/Type 5 (α=0.5, β=0.5) formulation to Cunnane.\n",
174
+
"Hzewn plotting positions (shown as red triangles) represet a piece-wise linear interpolation of the emperical cumulative distribution function of the dataset.\n",
175
+
"\n",
176
+
"Given the values of α and β=0.5 vary only slightly from the Cunnane values, the plotting position predictably are similar."
"Again, the different values of α and β don't significantly alter the shape of the probability plot near between -- say -- the lower and upper quartiles.\n",
232
+
"Beyond the quartiles, however, the difference is more obvious.\n",
233
+
"\n",
234
+
"The cell below computes the plotting positions with the three sets of α and β values that we've investigated and prints the first ten value for easy comparison."
0 commit comments