Appendix A — Corrections and changes
This chapter contains a list of corrections and chnages that were made during the teaching of the Python II module. If you spot a spelling error or mistake, feel free to let the teacher know! This will improve the quality of the book in the future significantly.
A.1 Chapter 11
- The Itertools-section is now Section 11.2 (was Section 11.3 before).
A.2 Section 8.2.1
- Added explanation of how to generate vectorized samples when multiple location-scale combinations are inputted.
A.3 Section 3.2.2
mgrid()
explanation is moved to Chapter 5.
A.4 Section 4.3.1
- Corrected the explanation of
np.argsort()
.
A.5 Section 3.5
- Corrected
M_repeat = np.tile(M,3)
byM_repeat = np.repeat(M,3)
- Corrected
vstack(a,b)
tovstack((a,b))
. - Corrected
hstack(a,b)
tohstack((a,b))
.