|
5 | 5 | "metadata": {},
|
6 | 6 | "source": [
|
7 | 7 | "# PYTHON COURSE FOR SCIENTIFIC PROGRAMMING \n",
|
8 |
| - "**Lecturer and Main Contributor to this lesson:**\n", |
| 8 | + "**Main Editor of this Lecture:**\n", |
9 | 9 | "\n",
|
10 | 10 | "Xabier Oianguren Asua: oiangu9@gmail.com\n",
|
11 | 11 | "\n",
|
12 |
| - "All the course material can be found at: https://llacorp.github.io/Python-Course-for-Scientific-Programming/ \n", |
13 |
| - "\n", |
14 | 12 | "---"
|
15 | 13 | ]
|
16 | 14 | },
|
|
19 | 17 | "metadata": {},
|
20 | 18 | "source": [
|
21 | 19 | "# LECTURE IV : Numpy and Matplotlib\n",
|
22 |
| - "In this Lecture, we are going to first learn what a **library** is and how to import them in a script, then we will focus on the main library other than the standard one that you will be using: **numpy**. Following this, we will unlock the superpower to access the self-learning skill-tree: **googling**. Finally, we will review some of the options provided by the main plotting library: **matplotlib**.\n", |
| 20 | + "In this Lecture, we are going to first learn what a **library** is and how to import them in a script, then we will focus on the main library, other than the standard one, that you will be using: **numpy**. Following this, we will unlock the superpower to access the self-learning skill-tree: **googling**. Finally, we will review some of the options provided by the main plotting library: **matplotlib**.\n", |
23 | 21 | "\n",
|
24 | 22 | "### $(A)$ - [LIBRARIES: *Importing and using function packages*](#A)\n",
|
25 | 23 | "### $(B)$ - [NUMPY: *Your trustworthy numerical algebra library*](#B)\n",
|
|
170 | 168 | "cell_type": "markdown",
|
171 | 169 | "metadata": {},
|
172 | 170 | "source": [
|
173 |
| - "You will be able to call any of the imported stuff this way by its name alone (no need to instantiate the used library). Usually this importing way is not the preferred one as you loose track of where this function comes from (useful if someone else reads your code). Still it allows to avoid importing the whole library if you don't need it" |
| 171 | + "You will be able to call any of the imported stuff this way by its name alone (no need to make a reference to the used library). Usually this importing way is not the preferred one as you loose track of where this function comes from (useful if someone else reads your code). Still it allows to avoid importing the whole library if you don't need it" |
174 | 172 | ]
|
175 | 173 | },
|
176 | 174 | {
|
|
212 | 210 | "cell_type": "markdown",
|
213 | 211 | "metadata": {},
|
214 | 212 | "source": [
|
215 |
| - "Still, note that the correct way to go is instantiating the name of the library, or a shortname for it, in order to differentiate them form the self-made functions and the ones from the Standard Library:\n", |
| 213 | + "Still, note that the correct way to go is referencing the name of the library, or a shortname for it, in order to differentiate them form the self-made functions and the ones from the Standard Library:\n", |
216 | 214 | "\n",
|
217 | 215 | "`import numpy as np`\n",
|
218 | 216 | "\n",
|
|
1450 | 1448 | "cell_type": "markdown",
|
1451 | 1449 | "metadata": {},
|
1452 | 1450 | "source": [
|
1453 |
| - "Note that appart from accessing the elements of an array by slicing in order to see their content or operate with them, we can as well change their values or assign values as if they were variables. Similar to what we could do with lists:" |
| 1451 | + "Note that apart from accessing the elements of an array by slicing in order to see their content or operate with them, we can as well change their values or assign values as if they were variables. Similar to what we could do with lists:" |
1454 | 1452 | ]
|
1455 | 1453 | },
|
1456 | 1454 | {
|
|
2018 | 2016 | "\n",
|
2019 | 2017 | "Luckily there is a very easy solution to this problem: asking the worldwide net! If you search for your problem in **English** on Google, DuckDuckgo or your favourite searching engine and make a little field work I assure you that the solutions will rise on their own! Almost in the first search option actually. With respect to python and very known libraries like numpy or matplotlib in particular, you won't even need to open the third search result before you find what you were looking for. Let us show you the power of googling, by theaching ourselves how to obtain the *mean* and the *standard deviation* of an array of data using numpy and how to get a *linear interpolation*!\n",
|
2020 | 2018 | "\n",
|
2021 |
| - "And remember: the day you realize that your main visited page is not Youtube but **stackoverflow** or **stackexchange**, you will then notice the good programmer you have turned into!\n", |
| 2019 | + "And remember: the day you realize that your main visited page is **stackoverflow** or **stackexchange**, you will then notice the good programmer you have turned into!\n", |
2022 | 2020 | "\n",
|
2023 |
| - "So lets imagine we want to compute the mean of the numbers in an array and their standard deviation. Ofcourse, we could program a function for this ourselves (try it as an exercise, it is easy!), however, we will soon realize that it is already implemented in `numpy`, and that actually it works way faster than our implementation (this will be due to the fact that numpuy routines are in fact implemented in C)." |
| 2021 | + "So lets imagine we want to compute the mean of the numbers in an array and their standard deviation. Of course, we could program a function for this ourselves (try it as an exercise, it is easy!), however, we will soon realize that it is already implemented in `numpy`, and that actually it works way faster than our implementation (this will be due to the fact that numpuy routines are in fact implemented in C)." |
2024 | 2022 | ]
|
2025 | 2023 | },
|
2026 | 2024 | {
|
|
2057 | 2055 | "source": [
|
2058 | 2056 | "Now, imagine we want to do a **linear polynomial fit** with least square errors given some x data \n",
|
2059 | 2057 | "array and y data array. I've searched on Google:\n",
|
2060 |
| - "\"linear regression numpy python\"\n", |
| 2058 | + "\"linear regression numpy python stack\"\n", |
2061 | 2059 | "And immediately got the answer in an stackoverflow entry:\n",
|
2062 | 2060 | " https://stackoverflow.com/questions/6148207/linear-regression-with-matplotlib-numpy\n"
|
2063 | 2061 | ]
|
2064 | 2062 | },
|
2065 | 2063 | {
|
2066 | 2064 | "cell_type": "code",
|
2067 |
| - "execution_count": 195, |
| 2065 | + "execution_count": 2, |
2068 | 2066 | "metadata": {},
|
2069 | 2067 | "outputs": [
|
2070 | 2068 | {
|
|
2073 | 2071 | "array([0.52993806, 3.57725396])"
|
2074 | 2072 | ]
|
2075 | 2073 | },
|
2076 |
| - "execution_count": 195, |
| 2074 | + "execution_count": 2, |
2077 | 2075 | "metadata": {},
|
2078 | 2076 | "output_type": "execute_result"
|
2079 | 2077 | }
|
|
2112 | 2110 | },
|
2113 | 2111 | {
|
2114 | 2112 | "cell_type": "code",
|
2115 |
| - "execution_count": 197, |
2116 |
| - "metadata": {}, |
2117 |
| - "outputs": [ |
2118 |
| - { |
2119 |
| - "data": { |
2120 |
| - "text/plain": [ |
2121 |
| - "4.107192016517552" |
2122 |
| - ] |
2123 |
| - }, |
2124 |
| - "execution_count": 197, |
2125 |
| - "metadata": {}, |
2126 |
| - "output_type": "execute_result" |
2127 |
| - } |
2128 |
| - ], |
2129 |
| - "source": [ |
2130 |
| - "def linearFit( x, fittingCoeffs ):\n", |
2131 |
| - " return fittingCoeffs[0] + fittingCoeffs[1]*x\n", |
2132 |
| - "\n", |
2133 |
| - "linearFit(2, coefficients)" |
2134 |
| - ] |
2135 |
| - }, |
2136 |
| - { |
2137 |
| - "cell_type": "markdown", |
2138 |
| - "metadata": {}, |
2139 |
| - "source": [ |
2140 |
| - "Alternatively, the guy answering in stackoverflow recommends creating a 1D polynomial using numpy with the given coefficients, such that we can evaluate whole x data vectors for instance:" |
2141 |
| - ] |
2142 |
| - }, |
2143 |
| - { |
2144 |
| - "cell_type": "code", |
2145 |
| - "execution_count": 199, |
| 2113 | + "execution_count": 3, |
2146 | 2114 | "metadata": {},
|
2147 | 2115 | "outputs": [
|
2148 | 2116 | {
|
2149 | 2117 | "name": "stdout",
|
2150 | 2118 | "output_type": "stream",
|
2151 | 2119 | "text": [
|
2152 |
| - "[4.37216105 4.63713008 6.01496903 7.97573985]\n", |
2153 |
| - "[3, 4.6, 8.6, 6.8]\n" |
| 2120 | + "7.684445973847216\n", |
| 2121 | + "[[3.40519596 2.21139912 1.04815479]\n", |
| 2122 | + " [3.01472626 2.32271907 3.22249238]\n", |
| 2123 | + " [3.20710188 3.8678744 3.19223183]]\n" |
2154 | 2124 | ]
|
2155 | 2125 | }
|
2156 | 2126 | ],
|
2157 | 2127 | "source": [
|
2158 |
| - "fittedPol = np.poly1d(coefficients) # generate the polynomial object\n", |
2159 |
| - "predictedY = fittedPol(x) # evaluate the polynomial\n", |
2160 |
| - "print(predictedY)\n", |
2161 |
| - "print(y)" |
| 2128 | + "def linearFit( x, fittingCoeffs ):\n", |
| 2129 | + " '''Given an array of points x, computes element-wise line ordinates'''\n", |
| 2130 | + " return fittingCoeffs[0] + fittingCoeffs[1]*x\n", |
| 2131 | + "\n", |
| 2132 | + "print(linearFit(2, coefficients))\n", |
| 2133 | + "print(linearFit(np.random.rand(3,3), coefficients))" |
2162 | 2134 | ]
|
2163 | 2135 | },
|
2164 | 2136 | {
|
|
2178 | 2150 | },
|
2179 | 2151 | {
|
2180 | 2152 | "cell_type": "code",
|
2181 |
| - "execution_count": 97, |
| 2153 | + "execution_count": 1, |
2182 | 2154 | "metadata": {},
|
2183 | 2155 | "outputs": [
|
2184 | 2156 | {
|
2185 | 2157 | "name": "stdout",
|
2186 | 2158 | "output_type": "stream",
|
2187 | 2159 | "text": [
|
2188 |
| - "Slope= 0.529938059187887\n", |
2189 |
| - "Intercept= 3.577253957329664\n", |
2190 |
| - "R-squared= 0.45063755447230586\n" |
| 2160 | + "Slope=0.53\n", |
| 2161 | + "Intercept=3.58\n", |
| 2162 | + "R-squared=0.451\n" |
2191 | 2163 | ]
|
2192 | 2164 | }
|
2193 | 2165 | ],
|
2194 | 2166 | "source": [
|
2195 |
| - "from scipy import stats as scipy\n", |
| 2167 | + "import scipy\n", |
2196 | 2168 | "\n",
|
2197 | 2169 | "x = [1.5, 2, 4.6, 8.3]\n",
|
2198 | 2170 | "y = [3, 4.6, 8.6, 6.8]\n",
|
2199 | 2171 | "\n",
|
2200 | 2172 | "slope, intercept, r_value, p_value, std_err = scipy.stats.linregress(x, y)\n",
|
2201 |
| - "print('Slope=',slope)\n", |
2202 |
| - "print('Intercept=',intercept)\n", |
2203 |
| - "print(\"R-squared=\", r_value**2)" |
| 2173 | + "print(f'Slope={slope:.3}')\n", |
| 2174 | + "print(f'Intercept={intercept:.3}')\n", |
| 2175 | + "print(f\"R-squared={r_value**2:.3}\")" |
2204 | 2176 | ]
|
2205 | 2177 | },
|
2206 | 2178 | {
|
|
13648 | 13620 | ],
|
13649 | 13621 | "metadata": {
|
13650 | 13622 | "kernelspec": {
|
13651 |
| - "display_name": "Python 3", |
| 13623 | + "display_name": "Python 3 (ipykernel)", |
13652 | 13624 | "language": "python",
|
13653 | 13625 | "name": "python3"
|
13654 | 13626 | },
|
|
13662 | 13634 | "name": "python",
|
13663 | 13635 | "nbconvert_exporter": "python",
|
13664 | 13636 | "pygments_lexer": "ipython3",
|
13665 |
| - "version": "3.7.3" |
| 13637 | + "version": "3.10.9" |
13666 | 13638 | }
|
13667 | 13639 | },
|
13668 | 13640 | "nbformat": 4,
|
|
0 commit comments