182: It would have been a good idea to point out
that the try-catch block creates its own local scope. This is a frequent source of confusion even for Julia
programmers with some experience.
191: In paragraph following the code listing, “1\times10” should be
1 × 10
312: The sentence beginning “In the dice example” should read
In the dice example, there are five ways to get a sum of six, so the probability is 5/36.
334: Listing 10-8 is missing the dateformat
keyword argument mentioned in the following text.
The function call should include
dateformat = "mm/dd/yy"
349: It would have been good to clarify that a SubDataFrame
is a view, or reference into the parent DataFrame.
373: In the second listing mode = load
... should be
model = load
...