Appendix C — 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.

C.1 Chapter 11

  • The Itertools-section is now Section 11.2 (was Section 11.3 before).

C.2 Section 8.2.1

  • Added explanation of how to generate vectorized samples when multiple location-scale combinations are inputted.

C.3 Section 3.2.2

  • mgrid() explanation is moved to Chapter 5.

C.4 Section 4.3.1

  • Corrected the explanation of np.argsort().

C.5 Section 3.5

  • Corrected M_repeat = np.tile(M,3) by M_repeat = np.repeat(M,3)
  • Corrected vstack(a,b) to vstack((a,b)).
  • Corrected hstack(a,b) to hstack((a,b)).