Skip to content

Commit 738ee1b

Browse files
committed
Improved for the 2023 course
1 parent aa9d986 commit 738ee1b

10 files changed

+1561
-1672
lines changed

EXERCISES/Exercises_Lecture_04.ipynb

+69-52
Large diffs are not rendered by default.

EXERCISES/Exercises_Lecture_05.ipynb

+7-3
Original file line numberDiff line numberDiff line change
@@ -481,6 +481,8 @@
481481
"cell_type": "markdown",
482482
"metadata": {},
483483
"source": [
484+
"---\n",
485+
"---\n",
484486
"# Exercise 5: Process the Data Taken in the Lab\n",
485487
"In this exercise we will simulate the data processing that experimental sciences require after an experiment. We will imagine that you have taken some measurements by hand in an excel file (the attached file `Lab_Data.xlsx`), and a machine has generated some measurements for three replicas of the experiment, each in a text file (the attached files `Replica_1.txt`, `Replica_2.txt`, `Replica_3.txt`). The excel file has two columns, with the variables `x_1,x_2,y_1`, while the text file has its numbers separated by commas in two columns, `x_3,y_3`. \n",
486488
"\n",
@@ -542,7 +544,7 @@
542544
" $$\n",
543545
" A=1,\\ B=10.5,\\ C=3,\\ D=0.7,\\ E=3$$\n",
544546
"\n",
545-
"*TIP/Example of how to do this!: (a) Use the Function you implemented in the previous lecture's exercises, or (b) use one implemented by somebofy. If you opt for (b): Imagine you had vectors `x_1`, `x_2` and `y` of length `N`, you find in stack-overflow that in order to fit the best coefficients $a,b,c,d$ for the equation $y^3=a e^{x_1}+b x_1^{7}+c \\frac{x_1}{\\sqrt{x_2}}+d$ you can do the following:*\n",
547+
"*TIP/Example of how to do this!: (a) Use the Function you implemented in the previous lecture's exercise 3, or (b) use one implemented by somebofy. If you opt for (b): Imagine you had vectors `x_1`, `x_2` and `y` of length `N`, you find in stack-overflow that in order to fit the best coefficients $a,b,c,d$ for the equation $y^3=a e^{x_1}+b x_1^{7}+c \\frac{x_1}{\\sqrt{x_2}}+d$ you can do the following:*\n",
546548
"\n",
547549
" from sklearn import linear_model\n",
548550
" \n",
@@ -791,6 +793,8 @@
791793
"cell_type": "markdown",
792794
"metadata": {},
793795
"source": [
796+
"---\n",
797+
"---\n",
794798
"# Exercise 6: Creating a GIF animation using different Images\n",
795799
"\n",
796800
"We acknowledged in the previous lecture's exercises that when simulations got heavy, trying to watch them live was problematic. Instead, what we could do is to save all the frames generated by the simulation in a temporary directory, and only after the simulation has ended, generate an animation (say a `gif` \"moving image\") with a desired frame-rate.\n",
@@ -1259,7 +1263,7 @@
12591263
],
12601264
"metadata": {
12611265
"kernelspec": {
1262-
"display_name": "Python 3",
1266+
"display_name": "Python 3 (ipykernel)",
12631267
"language": "python",
12641268
"name": "python3"
12651269
},
@@ -1273,7 +1277,7 @@
12731277
"name": "python",
12741278
"nbconvert_exporter": "python",
12751279
"pygments_lexer": "ipython3",
1276-
"version": "3.7.3"
1280+
"version": "3.10.9"
12771281
}
12781282
},
12791283
"nbformat": 4,

LECTURES/Lecture_01.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -2617,7 +2617,7 @@
26172617
"provenance": []
26182618
},
26192619
"kernelspec": {
2620-
"display_name": "Python 3",
2620+
"display_name": "Python 3 (ipykernel)",
26212621
"language": "python",
26222622
"name": "python3"
26232623
},
@@ -2631,7 +2631,7 @@
26312631
"name": "python",
26322632
"nbconvert_exporter": "python",
26332633
"pygments_lexer": "ipython3",
2634-
"version": "3.7.3"
2634+
"version": "3.10.9"
26352635
}
26362636
},
26372637
"nbformat": 4,

LECTURES/Lecture_02.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1537,7 +1537,7 @@
15371537
"provenance": []
15381538
},
15391539
"kernelspec": {
1540-
"display_name": "Python 3",
1540+
"display_name": "Python 3 (ipykernel)",
15411541
"language": "python",
15421542
"name": "python3"
15431543
},
@@ -1551,7 +1551,7 @@
15511551
"name": "python",
15521552
"nbconvert_exporter": "python",
15531553
"pygments_lexer": "ipython3",
1554-
"version": "3.7.3"
1554+
"version": "3.10.9"
15551555
}
15561556
},
15571557
"nbformat": 4,

LECTURES/Lecture_03.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -2135,7 +2135,7 @@
21352135
"provenance": []
21362136
},
21372137
"kernelspec": {
2138-
"display_name": "Python 3",
2138+
"display_name": "Python 3 (ipykernel)",
21392139
"language": "python",
21402140
"name": "python3"
21412141
},
@@ -2149,7 +2149,7 @@
21492149
"name": "python",
21502150
"nbconvert_exporter": "python",
21512151
"pygments_lexer": "ipython3",
2152-
"version": "3.7.3"
2152+
"version": "3.10.9"
21532153
}
21542154
},
21552155
"nbformat": 4,

LECTURES/Lecture_04.ipynb

+31-59
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,10 @@
55
"metadata": {},
66
"source": [
77
"# PYTHON COURSE FOR SCIENTIFIC PROGRAMMING \n",
8-
"**Lecturer and Main Contributor to this lesson:**\n",
8+
"**Main Editor of this Lecture:**\n",
99
"\n",
1010
"Xabier Oianguren Asua: oiangu9@gmail.com\n",
1111
"\n",
12-
"All the course material can be found at: https://llacorp.github.io/Python-Course-for-Scientific-Programming/ \n",
13-
"\n",
1412
"---"
1513
]
1614
},
@@ -19,7 +17,7 @@
1917
"metadata": {},
2018
"source": [
2119
"# 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",
2321
"\n",
2422
"### $(A)$ - [LIBRARIES: *Importing and using function packages*](#A)\n",
2523
"### $(B)$ - [NUMPY: *Your trustworthy numerical algebra library*](#B)\n",
@@ -170,7 +168,7 @@
170168
"cell_type": "markdown",
171169
"metadata": {},
172170
"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"
174172
]
175173
},
176174
{
@@ -212,7 +210,7 @@
212210
"cell_type": "markdown",
213211
"metadata": {},
214212
"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",
216214
"\n",
217215
"`import numpy as np`\n",
218216
"\n",
@@ -1450,7 +1448,7 @@
14501448
"cell_type": "markdown",
14511449
"metadata": {},
14521450
"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:"
14541452
]
14551453
},
14561454
{
@@ -2018,9 +2016,9 @@
20182016
"\n",
20192017
"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",
20202018
"\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",
20222020
"\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)."
20242022
]
20252023
},
20262024
{
@@ -2057,14 +2055,14 @@
20572055
"source": [
20582056
"Now, imagine we want to do a **linear polynomial fit** with least square errors given some x data \n",
20592057
"array and y data array. I've searched on Google:\n",
2060-
"\"linear regression numpy python\"\n",
2058+
"\"linear regression numpy python stack\"\n",
20612059
"And immediately got the answer in an stackoverflow entry:\n",
20622060
" https://stackoverflow.com/questions/6148207/linear-regression-with-matplotlib-numpy\n"
20632061
]
20642062
},
20652063
{
20662064
"cell_type": "code",
2067-
"execution_count": 195,
2065+
"execution_count": 2,
20682066
"metadata": {},
20692067
"outputs": [
20702068
{
@@ -2073,7 +2071,7 @@
20732071
"array([0.52993806, 3.57725396])"
20742072
]
20752073
},
2076-
"execution_count": 195,
2074+
"execution_count": 2,
20772075
"metadata": {},
20782076
"output_type": "execute_result"
20792077
}
@@ -2112,53 +2110,27 @@
21122110
},
21132111
{
21142112
"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,
21462114
"metadata": {},
21472115
"outputs": [
21482116
{
21492117
"name": "stdout",
21502118
"output_type": "stream",
21512119
"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"
21542124
]
21552125
}
21562126
],
21572127
"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))"
21622134
]
21632135
},
21642136
{
@@ -2178,29 +2150,29 @@
21782150
},
21792151
{
21802152
"cell_type": "code",
2181-
"execution_count": 97,
2153+
"execution_count": 1,
21822154
"metadata": {},
21832155
"outputs": [
21842156
{
21852157
"name": "stdout",
21862158
"output_type": "stream",
21872159
"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"
21912163
]
21922164
}
21932165
],
21942166
"source": [
2195-
"from scipy import stats as scipy\n",
2167+
"import scipy\n",
21962168
"\n",
21972169
"x = [1.5, 2, 4.6, 8.3]\n",
21982170
"y = [3, 4.6, 8.6, 6.8]\n",
21992171
"\n",
22002172
"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}\")"
22042176
]
22052177
},
22062178
{
@@ -13648,7 +13620,7 @@
1364813620
],
1364913621
"metadata": {
1365013622
"kernelspec": {
13651-
"display_name": "Python 3",
13623+
"display_name": "Python 3 (ipykernel)",
1365213624
"language": "python",
1365313625
"name": "python3"
1365413626
},
@@ -13662,7 +13634,7 @@
1366213634
"name": "python",
1366313635
"nbconvert_exporter": "python",
1366413636
"pygments_lexer": "ipython3",
13665-
"version": "3.7.3"
13637+
"version": "3.10.9"
1366613638
}
1366713639
},
1366813640
"nbformat": 4,

LECTURES/Lecture_05.ipynb

+13-12
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"metadata": {},
66
"source": [
77
"# PYTHON COURSE FOR SCIENTIFIC PROGRAMMING \n",
8-
"**Lecturer and main contributor to this lesson:**\n",
8+
"**Main Editor of this Lecture:**\n",
99
"\n",
1010
"Xabier Oianguren Asua: oiangu9@gmail.com\n",
1111
"\n",
@@ -2078,37 +2078,38 @@
20782078
"\n",
20792079
"Here you have a list of the possible following topics you could attack to deepen your programming skills:\n",
20802080
"\n",
2081+
"\n",
20812082
"- Using `.py` scripts to code instead of a Jupyter Notebook, running scripts from a terminal/console.\n",
20822083
"\n",
20832084
"\n",
2084-
"- Object Oriented Programming: the `class` conondrum.\n",
2085+
"- Data manipulation libraries like `pandas`.\n",
20852086
"\n",
20862087
"\n",
2087-
"- Assertions and error controls, `try`-`except`-`catch` structures.\n",
2088+
"- Object Oriented Programming: the `class` conondrum.\n",
20882089
"\n",
20892090
"\n",
20902091
"- `map` and `lambda` functions.\n",
20912092
"\n",
20922093
"\n",
2093-
"- Manipulating images, videos, sound and other more exotic data types (openCV, sounddevice ...)\n",
2094+
"- Manipulating images, videos, sound and other more exotic data types (libraries like `openCV, sounddevice` ...)\n",
20942095
"\n",
20952096
"\n",
2096-
"- Machine Learning and Deep Learning (pytorch, scikit-learn, tensorflow ...)\n",
2097+
"- Machine Learning and Deep Learning (libraries like `pytorch, scikit-learn, tensorflow` ...)\n",
20972098
"\n",
20982099
"\n",
2099-
"- Parallel processing using several CPU cores or using the GPU itself (mpi4py, multiprocessing, pytorch ...)\n",
2100+
"- Parallel processing using several CPU cores or using the GPU itself (`mpi4py, multiprocessing, pytorch` ...)\n",
21002101
"\n",
21012102
"\n",
2102-
"- Calling C/C++ functions under the hood (ctypes ...)\n",
2103+
"- Calling C/C++ functions under the hood (`ctypes` ...)\n",
21032104
"\n",
21042105
"\n",
2105-
"- Graphical user interfaces (pyQt ...)\n",
2106+
"- Graphical user interfaces (`pyQt` ...)\n",
21062107
"\n",
21072108
"\n",
2108-
"- Standalone executables (pyinstaller ...)\n",
2109+
"- Standalone executables (`pyinstaller` ...)\n",
21092110
"\n",
21102111
"\n",
2111-
"- Web/mobile application development (flask ...)\n",
2112+
"- Web/mobile application development (`flask` ...)\n",
21122113
"\n",
21132114
"\n",
21142115
"- ..."
@@ -2136,7 +2137,7 @@
21362137
],
21372138
"metadata": {
21382139
"kernelspec": {
2139-
"display_name": "Python 3",
2140+
"display_name": "Python 3 (ipykernel)",
21402141
"language": "python",
21412142
"name": "python3"
21422143
},
@@ -2150,7 +2151,7 @@
21502151
"name": "python",
21512152
"nbconvert_exporter": "python",
21522153
"pygments_lexer": "ipython3",
2153-
"version": "3.7.3"
2154+
"version": "3.10.9"
21542155
}
21552156
},
21562157
"nbformat": 4,

0 commit comments

Comments
 (0)