Errata

Python and R for the Modern Data Scientist

Errata for Python and R for the Modern Data Scientist

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
Other Digital Version Chp 2 R for Pythonistas - Projects and Packages
4th paragraph

"You may be tempted to write something terrible, like this:
diamonds <- read.csv("ch02-r4py/data/diamonds.csv")
You’ll be familiar with avoiding the use of hardcoded paths when using virtual environments with Python."

You used a relative path (the same command copied from the example above this) when you meant to be describing a hardcoded path according to the surrounding text.

Anonymous  Aug 23, 2022 
Other Digital Version Chp 2 - R for Pythonistas - How to Find…Stuff
9th code block

# The 23rd to the last element
[1] "w" "x" "y" "z"

Code block only has the above printed. Github material shows the complete line of code which was omitted:
letters[23:length(letters)]

Anonymous  Aug 23, 2022