\n",
"\n",
"## Interactive Simple Bootstrap Demonstration\n",
"\n",
"### Boostrap for Uncertainty in Sample Statistics, The Red and Green Balls with a Cowboy Hat Tutorial\n",
"\n",
"* in class I bring in 3 red balls, 2 green balls and my cowboy hat, yes I have one, recall I was a farmhand in Alberta, Canada\n",
"\n",
"* then I have students volunteer, one holds the hat, one draws balls with replacement and one scribes the results on the board\n",
"\n",
"* through multiple bootstrap smaple sets we demonstrate the use of bootstrap to calculate uncertainty in the proportion from the sample itself\n",
"\n",
"* with this workflow we all provide an interactive plot demonstration with matplotlib and ipywidget packages\n",
"\n",
"#### Michael Pyrcz, Associate Professor, University of Texas at Austin \n",
"\n",
"##### [Twitter](https://twitter.com/geostatsguy) | [GitHub](https://github.com/GeostatsGuy) | [Website](http://michaelpyrcz.com) | [GoogleScholar](https://scholar.google.com/citations?user=QVZ20eQAAAAJ&hl=en&oi=ao) | [Book](https://www.amazon.com/Geostatistical-Reservoir-Modeling-Michael-Pyrcz/dp/0199731446) | [YouTube](https://www.youtube.com/channel/UCLqEr-xV-ceHdXXXrTId5ig) | [LinkedIn](https://www.linkedin.com/in/michael-pyrcz-61a648a1) | [GeostatsPy](https://github.com/GeostatsGuy/GeostatsPy)\n",
"\n",
"#### Bootstrap\n",
"\n",
"Uncertainty in the sample statistics\n",
"* one source of uncertainty is the paucity of data.\n",
"* do 200 or even less wells provide a precise (and accurate estimate) of the mean? standard deviation? skew? P13?\n",
"\n",
"Would it be useful to know the uncertainty in these statistics due to limited sampling?\n",
"* what is the impact of uncertainty in the mean porosity e.g. 20%+/-2%?\n",
"\n",
"**Bootstrap** is a method to assess the uncertainty in a sample statistic by repeated random sampling with replacement.\n",
"\n",
"Assumptions\n",
"* sufficient, representative sampling, identical, idependent samples\n",
"\n",
"Limitations\n",
"1. assumes the samples are representative \n",
"2. assumes stationarity\n",
"3. only accounts for uncertainty due to too few samples, e.g. no uncertainty due to changes away from data\n",
"4. does not account for boundary of area of interest \n",
"5. assumes the samples are independent\n",
"6. does not account for other local information sources\n",
"\n",
"The Bootstrap Approach (Efron, 1982)\n",
"\n",
"Statistical resampling procedure to calculate uncertainty in a calculated statistic from the data itself.\n",
"* Does this work? Prove it to yourself, for uncertainty in the mean solution is standard error: \n",
"\n",
"\\begin{equation}\n",
"\\sigma^2_\\overline{x} = \\frac{\\sigma^2_s}{n}\n",
"\\end{equation}\n",
"\n",
"Extremely powerful - could calculate uncertainty in any statistic! e.g. P13, skew etc.\n",
"* Would not be possible access general uncertainty in any statistic without bootstrap.\n",
"* Advanced forms account for spatial information and sampling strategy (game theory and Journel’s spatial bootstrap (1993).\n",
"\n",
"Steps: \n",
"\n",
"1. assemble a sample set, must be representative, reasonable to assume independence between samples\n",
"\n",
"2. optional: build a cumulative distribution function (CDF)\n",
" * may account for declustering weights, tail extrapolation\n",
" * could use analogous data to support\n",
"\n",
"3. For $\\ell = 1, \\ldots, L$ realizations, do the following:\n",
"\n",
" * For $i = \\alpha, \\ldots, n$ data, do the following:\n",
"\n",
" * Draw a random sample with replacement from the sample set or Monte Carlo simulate from the CDF (if available). \n",
"\n",
"6. Calculate a realization of the sammary statistic of interest from the $n$ samples, e.g. $m^\\ell$, $\\sigma^2_{\\ell}$. Return to 3 for another realization.\n",
"\n",
"7. Compile and summarize the $L$ realizations of the statistic of interest.\n",
"\n",
"This is a very powerful method. Let's try it out.\n",
"\n",
"\n",
"#### Objective \n",
"\n",
"Provide an example and demonstration for:\n",
"\n",
"1. interactive plotting in Jupyter Notebooks with Python packages matplotlib and ipywidgets\n",
"2. provide an intuitive hands-on example of statistical boostrap \n",
"\n",
"#### Getting Started\n",
"\n",
"Here's the steps to get setup in Python with the GeostatsPy package:\n",
"\n",
"1. Install Anaconda 3 on your machine (https://www.anaconda.com/download/). \n",
"2. Open Jupyter and in the top block get started by copy and pasting the code block below from this Jupyter Notebook to start using the geostatspy functionality. \n",
"\n",
"#### Load the Required Libraries\n",
"\n",
"The following code loads the required libraries."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"%matplotlib inline\n",
"from ipywidgets import interactive # widgets and interactivity\n",
"from ipywidgets import widgets \n",
"from ipywidgets import Layout\n",
"from ipywidgets import Label\n",
"from ipywidgets import VBox, HBox\n",
"import matplotlib.pyplot as plt # plotting\n",
"import numpy as np # working with arrays\n",
"import pandas as pd # working with DataFrames\n",
"import seaborn as sns # for matrix scatter plots\n",
"from scipy.stats import triang # parametric distributions\n",
"from scipy.stats import binom\n",
"from scipy.stats import norm\n",
"from scipy.stats import uniform\n",
"from scipy.stats import triang\n",
"from scipy import stats # statistical calculations\n",
"import random # random drawing / bootstrap realizations of the data\n",
"from matplotlib.gridspec import GridSpec"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Make a Synthetic Dataset\n",
"\n",
"This is an interactive method to:\n",
"\n",
"* select a parametric distribution\n",
"\n",
"* select the distribution parameters\n",
"\n",
"* select the number of samples and visualize the synthetic dataset distribution"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"# parameters for the synthetic dataset\n",
"bins = np.linspace(0,1000,1000)\n",
"\n",
"# interactive calculation of the sample set (control of source parametric distribution and number of samples)\n",
"l = widgets.Text(value=' Simple Boostrap Demonstration, Michael Pyrcz, Associate Professor, The University of Texas at Austin',layout=Layout(width='950px', height='30px'))\n",
"\n",
"a = widgets.IntSlider(min=0, max = 100, value = 2, step = 1, description = '$n_{red}$',orientation='horizontal',layout=Layout(width='400px', height='20px'))\n",
"a.style.handle_color = 'red'\n",
"\n",
"b = widgets.IntSlider(min=0, max = 100, value = 3, step = 1, description = '$n_{green}$',orientation='horizontal',layout=Layout(width='400px', height='20px'))\n",
"b.style.handle_color = 'green'\n",
"\n",
"c = widgets.IntSlider(min=1, max = 16, value = 3, step = 1, description = '$L$',orientation='horizontal',layout=Layout(width='400px', height='20px'))\n",
"c.style.handle_color = 'gray'\n",
"\n",
"ui = widgets.HBox([a,b,c],) # basic widget formatting \n",
"ui2 = widgets.VBox([l,ui],)\n",
"\n",
"def f_make(a, b, c): # function to take parameters, make sample and plot\n",
" red_freq = make_data(a, b, c)\n",
"\n",
" labels = ['Red', 'Green']\n",
" nrows = np.round(np.sqrt(c)+0.4,0); ncols = np.round(c / nrows + 0.4,0)\n",
" plt.clf()\n",
" \n",
" for i in range(0, c): \n",
" plt.subplot(ncols,nrows,i + 1) \n",
" draw = [red_freq[i],a + b - red_freq[i]]\n",
" plt.grid(zorder=0, color='black', axis = 'y', alpha = 0.2); plt.ylim(0,a + b); \n",
" plt.ylabel('Frequency'); plt.xlabel('Balls Drawn')\n",
" plt.yticks(np.arange(0,a + b + 1,1))\n",
" barlist = plt.bar(labels,draw, edgecolor = \"black\", linewidth = 3, alpha = 0.4); plt.title('Realization #' + str(i+1),zorder = 1) \n",
" barlist[0].set_color('r'); barlist[1].set_color('g')\n",
" \n",
" plt.subplots_adjust(left=0.0, bottom=0.0, right=2.0, top=1.2 * nrows, wspace=0.2, hspace=0.2)\n",
" plt.show()\n",
"\n",
"def make_data(a, b, c): # function to check parameters and make sample \n",
" prop_red = np.zeros(c)\n",
" for i in range(0, c): \n",
" prop_red[i] = np.random.multinomial(a+b,[a/(a+b),b/(a+b)], size = 1)[0][0]\n",
" return prop_red\n",
"\n",
"# connect the function to make the samples and plot to the widgets \n",
"interactive_plot = widgets.interactive_output(f_make, {'a': a, 'b': b, 'c': c})\n",
"interactive_plot.clear_output(wait = True) # reduce flickering by delaying plot updating"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Simple Bootstrap Demonstration - Drawing Red and Green Balls from a Virtual Cowboy Hat\n",
"\n",
"* drawing red and green balls from a hat with replacement to access uncertainty in the proportion \n",
"\n",
"* interactive plot demonstration with ipywidget, matplotlib packages\n",
"\n",
"#### Michael Pyrcz, Associate Professor, University of Texas at Austin \n",
"\n",
"##### [Twitter](https://twitter.com/geostatsguy) | [GitHub](https://github.com/GeostatsGuy) | [Website](http://michaelpyrcz.com) | [GoogleScholar](https://scholar.google.com/citations?user=QVZ20eQAAAAJ&hl=en&oi=ao) | [Book](https://www.amazon.com/Geostatistical-Reservoir-Modeling-Michael-Pyrcz/dp/0199731446) | [YouTube](https://www.youtube.com/channel/UCLqEr-xV-ceHdXXXrTId5ig) | [LinkedIn](https://www.linkedin.com/in/michael-pyrcz-61a648a1) | [GeostatsPy](https://github.com/GeostatsGuy/GeostatsPy)\n",
"\n",
"### The Problem\n",
"\n",
"Let's simulate bootstrap, resampling with replacement from a hat with $n_{red}$ and $n_{green}$ balls\n",
"\n",
"* **$n_{red}$**: number of red balls in the sample (placed in the hat)\n",
"\n",
"* **$n_{green}$**: number of green balls in the sample (placed in the hat)\n",
"\n",
"* **$L$**: number of bootstrap realizations"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "18784012c831495e912c23d38bfaca2c",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(Text(value=' Simple Boostrap Demonstration, Michael Pyrcz, Assoc…"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "aef31abbc71b4ab38ed204e4646bc3f9",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Output(outputs=({'output_type': 'error', 'ename': 'ValueError', 'evalue': 'Number of rows must be a positive i…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"display(ui2, interactive_plot) # display the interactive plot"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Summarizing Bootstrap Uncertainty\n",
"\n",
"* Run more bootstrap realizations and evaluate the uncertianty model\n",
"\n",
"Now instead of looking at each bootstrap result, let's make many and summarize with:\n",
"\n",
"* **box and whisker plot** of the red and green ball frequencies\n",
"\n",
"* **histograms** of the red and green ball frequencies."
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"# parameters for the synthetic dataset\n",
"bins = np.linspace(0,1000,1000)\n",
"\n",
"# interactive calculation of the sample set (control of source parametric distribution and number of samples)\n",
"l2 = widgets.Text(value=' Simple Boostrap Demonstration, Michael Pyrcz, Associate Professor, The University of Texas at Austin',layout=Layout(width='950px', height='30px'))\n",
"\n",
"a2 = widgets.IntSlider(min=0, max = 100, value = 2, step = 1, description = '$n_{red}$',orientation='horizontal',layout=Layout(width='400px', height='20px'))\n",
"a2.style.handle_color = 'red'\n",
"\n",
"b2 = widgets.IntSlider(min=0, max = 100, value = 3, step = 1, description = '$n_{green}$',orientation='horizontal',layout=Layout(width='400px', height='20px'))\n",
"b2.style.handle_color = 'green'\n",
"\n",
"c2 = widgets.IntSlider(min=5, max = 1000, value = 3, step = 1, description = '$L$',orientation='horizontal',layout=Layout(width='400px', height='20px'))\n",
"c2.style.handle_color = 'gray'\n",
"\n",
"uib = widgets.HBox([a2,b2,c2],) # basic widget formatting \n",
"uib2 = widgets.VBox([l2,uib],)\n",
"\n",
"def s_make(a, b, c): # function to take parameters, make sample and plot\n",
" red_freq = make_data(a, b, c)\n",
" green_freq = (a + b) - red_freq\n",
" prop_red = red_freq / (a + b)\n",
" labels = ['Red Balls', 'Green Balls']\n",
" bins = np.linspace(0,a + b, a + b)\n",
"\n",
" fig = plt.figure(constrained_layout=False)\n",
" gs = GridSpec(3, 2, figure=fig)\n",
" \n",
" ax1 = fig.add_subplot(gs[:, 0])\n",
" ax1.boxplot([red_freq,green_freq],labels = labels, notch = True, sym = '+')\n",
" ax1.set_ylim(0,a + b)\n",
" ax1.grid(zorder=0, color='black', axis = 'y', alpha = 0.2); plt.ylim(0,a + b); \n",
" ax1.set_ylabel('Frequency'); ax1.set_xlabel('Balls Drawn');ax1.set_title('Bootstrap Frequency Distributions')\n",
" ax1.set_yticks(np.arange(0,a + b + 1,5))\n",
"\n",
" ax2 = fig.add_subplot(gs[0, 1])\n",
" ax2.hist(red_freq,alpha=0.2,color=\"red\",edgecolor=\"black\", bins = bins)\n",
" ax2.set_title('Red Ball Bootstrap Frequency Distributions'); ax2.set_xlabel('Number Red Balls'); ax2.set_ylabel('Frequency') \n",
"\n",
" ax3 = fig.add_subplot(gs[1, 1])\n",
" ax3.hist(green_freq,alpha=0.2,color=\"green\",edgecolor=\"black\", bins = bins)\n",
" ax3.set_title('Green Ball Bootstrap Frequency Distributions'); ax3.set_xlabel('Proportion of Red Balls'); ax3.set_ylabel('Frequency') \n",
"\n",
" ax4 = fig.add_subplot(gs[2, 1])\n",
" ax4.hist(prop_red,alpha=0.2,color=\"red\",edgecolor=\"black\", bins = np.linspace(0,1,50))\n",
" ax4.set_title('Uncertainty in Proportion of Red Balls'); ax4.set_xlabel('Proportion of Red Balls'); ax4.set_ylabel('Frequency') \n",
" \n",
" print('Uncertainty in Proportion of Red Balls: ')\n",
" print('P10: ' + str(np.round(np.percentile(prop_red,10),2)))\n",
" print('P50: ' + str(np.round(np.percentile(prop_red,50),2)))\n",
" print('P90: ' + str(np.round(np.percentile(prop_red,90),2)))\n",
" \n",
" plt.subplots_adjust(left=0.0, bottom=0.0, right=2.5, top=3.0, wspace=0.2, hspace=0.3)\n",
" plt.show()\n",
"\n",
"# connect the function to make the samples and plot to the widgets \n",
"interactive_plot = widgets.interactive_output(s_make, {'a': a2, 'b': b2, 'c': c2})\n",
"interactive_plot.clear_output(wait = True) # reduce flickering by delaying plot updating"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Simple Bootstrap Demonstration - Summarizing the Uncertainty in Frequencies\n",
"\n",
"* drawing red and green balls from a hat with replacement to access uncertainty in the proportion \n",
"\n",
"* run many bootstrap realizations and summarize the results\n",
"\n",
"* interactive plot demonstration with ipywidget, matplotlib packages\n",
"\n",
"#### Michael Pyrcz, Associate Professor, University of Texas at Austin \n",
"\n",
"##### [Twitter](https://twitter.com/geostatsguy) | [GitHub](https://github.com/GeostatsGuy) | [Website](http://michaelpyrcz.com) | [GoogleScholar](https://scholar.google.com/citations?user=QVZ20eQAAAAJ&hl=en&oi=ao) | [Book](https://www.amazon.com/Geostatistical-Reservoir-Modeling-Michael-Pyrcz/dp/0199731446) | [YouTube](https://www.youtube.com/channel/UCLqEr-xV-ceHdXXXrTId5ig) | [LinkedIn](https://www.linkedin.com/in/michael-pyrcz-61a648a1) | [GeostatsPy](https://github.com/GeostatsGuy/GeostatsPy)\n",
"\n",
"### The Problem\n",
"\n",
"Let's simulate bootstrap, resampling with replacement from a hat with $n_{red}$ and $n_{green}$ balls\n",
"\n",
"* **$n_{red}$**: number of red balls in the sample (placed in the hat)\n",
"\n",
"* **$n_{green}$**: number of green balls in the sample (placed in the hat)\n",
"\n",
"* **$L$**: number of bootstrap realizations"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "11dd454f89c240babcf2893d320d0e65",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(Text(value=' Simple Boostrap Demonstration, Michael Pyrcz, Assoc…"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "46914c078bff4df292ab09658f1e37d5",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Output(outputs=({'output_type': 'stream', 'text': 'Uncertainty in Proportion of Red Balls: \\nP10: 0.2\\nP50: 0.…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"display(uib2, interactive_plot) # display the interactive plot"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Observations\n",
"\n",
"Some observations:\n",
"\n",
"* sampling distribution for proportions become discrete with too fee samples, only n cases are possible\n",
"\n",
"* enough bootstrap realizations are rquired for stable statistics\n",
"\n",
"\n",
"#### Comments\n",
"\n",
"This was a simple demonstration of interactive plots in Jupyter Notebook Python with the ipywidgets and matplotlib packages. \n",
"\n",
"I have many other demonstrations on data analytics and machine learning, e.g. on the basics of working with DataFrames, ndarrays, univariate statistics, plotting data, declustering, data transformations, trend modeling and many other workflows available at https://github.com/GeostatsGuy/PythonNumericalDemos and https://github.com/GeostatsGuy/GeostatsPy. \n",
" \n",
"I hope this was helpful,\n",
"\n",
"*Michael*\n",
"\n",
"#### The Author:\n",
"\n",
"### Michael Pyrcz, Associate Professor, University of Texas at Austin \n",
"*Novel Data Analytics, Geostatistics and Machine Learning Subsurface Solutions*\n",
"\n",
"With over 17 years of experience in subsurface consulting, research and development, Michael has returned to academia driven by his passion for teaching and enthusiasm for enhancing engineers' and geoscientists' impact in subsurface resource development. \n",
"\n",
"For more about Michael check out these links:\n",
"\n",
"#### [Twitter](https://twitter.com/geostatsguy) | [GitHub](https://github.com/GeostatsGuy) | [Website](http://michaelpyrcz.com) | [GoogleScholar](https://scholar.google.com/citations?user=QVZ20eQAAAAJ&hl=en&oi=ao) | [Book](https://www.amazon.com/Geostatistical-Reservoir-Modeling-Michael-Pyrcz/dp/0199731446) | [YouTube](https://www.youtube.com/channel/UCLqEr-xV-ceHdXXXrTId5ig) | [LinkedIn](https://www.linkedin.com/in/michael-pyrcz-61a648a1)\n",
"\n",
"#### Want to Work Together?\n",
"\n",
"I hope this content is helpful to those that want to learn more about subsurface modeling, data analytics and machine learning. Students and working professionals are welcome to participate.\n",
"\n",
"* Want to invite me to visit your company for training, mentoring, project review, workflow design and / or consulting? I'd be happy to drop by and work with you! \n",
"\n",
"* Interested in partnering, supporting my graduate student research or my Subsurface Data Analytics and Machine Learning consortium (co-PIs including Profs. Foster, Torres-Verdin and van Oort)? My research combines data analytics, stochastic modeling and machine learning theory with practice to develop novel methods and workflows to add value. We are solving challenging subsurface problems!\n",
"\n",
"* I can be reached at mpyrcz@austin.utexas.edu.\n",
"\n",
"I'm always happy to discuss,\n",
"\n",
"*Michael*\n",
"\n",
"Michael Pyrcz, Ph.D., P.Eng. Associate Professor The Hildebrand Department of Petroleum and Geosystems Engineering, Bureau of Economic Geology, The Jackson School of Geosciences, The University of Texas at Austin\n",
"\n",
"#### More Resources Available at: [Twitter](https://twitter.com/geostatsguy) | [GitHub](https://github.com/GeostatsGuy) | [Website](http://michaelpyrcz.com) | [GoogleScholar](https://scholar.google.com/citations?user=QVZ20eQAAAAJ&hl=en&oi=ao) | [Book](https://www.amazon.com/Geostatistical-Reservoir-Modeling-Michael-Pyrcz/dp/0199731446) | [YouTube](https://www.youtube.com/channel/UCLqEr-xV-ceHdXXXrTId5ig) | [LinkedIn](https://www.linkedin.com/in/michael-pyrcz-61a648a1)\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.12"
}
},
"nbformat": 4,
"nbformat_minor": 2
}