{ "cells": [ { "cell_type": "markdown", "id": "43f086df", "metadata": {}, "source": [ "# PHYS 310 Class 4 (Data Analysis class number 3)\n", "Skeleton notebook for in-class exercises\n", "\n", "Tom Solomon, Feb 2023" ] }, { "cell_type": "code", "execution_count": null, "id": "5972accc", "metadata": {}, "outputs": [], "source": [ "# First, start with the standard stuff at the top\n", "import numpy as np\n", "from scipy import optimize\n", "import urllib\n", "\n", "import matplotlib as mpl\n", "import matplotlib.pyplot as plt" ] }, { "cell_type": "code", "execution_count": null, "id": "00f416ac", "metadata": {}, "outputs": [], "source": [ "# Following is an Ipython magic command that puts figures in notebook.\n", "%matplotlib notebook \n", " \n", "# M.L. modifications of matplotlib defaults\n", "# Changes can also be put in matplotlibrc file, \n", "# or effected using mpl.rcParams[]\n", "mpl.style.use('classic') \n", "plt.rc('figure', figsize = (6, 4.5)) # Reduces overall size of figures\n", "plt.rc('axes', labelsize=16, titlesize=14)\n", "plt.rc('figure', autolayout = True) # Adjusts supblot params for new size" ] }, { "cell_type": "markdown", "id": "782bf598", "metadata": {}, "source": [ "# Recall from last week: \n", "### Average $\\bar{x} = \\frac{1}{N}\\Sigma_ix_i$\n", "### Weighted average $\\bar{x}_{weighted} = \\frac{\\Sigma_iw_ix_i}{\\Sigma_iw_i}$\n", "### where weights $w_i = \\frac{1}{\\alpha_i^2}$" ] }, { "cell_type": "markdown", "id": "383d7763", "metadata": {}, "source": [ "