ElementsOfDataScience
ElementsOfDataScience copied to clipboard
An introduction to data science in Python, for people with no programming experience.
In 04_loops, the last line of War And Peace is : *** END OF THE PROJECT GUTENBERG EBOOK WAR AND PEACE *** and no longer : End of the Project...
When trying to download data files from the following cell : > download('https://ftp.cdc.gov/pub/health_statistics/nchs/' + > 'datasets/NSFG/stata/' + dict_file) I got the following error : > URLError: I execute the notebook...
The encoding on my windows computer is 'cp1252'. When I execute the following cell of the 04_loops notebook: `fp = open('2600-0.txt') count = 0 for line in fp: count +=...
The html version of you book contains an exception where an output is expected: https://allendowney.github.io/ElementsOfDataScience/03_arrays.html#summarizing-relative-differences ```py --------------------------------------------------------------------------- NameError Traceback (most recent call last) in ----> 1 np.min(percent_differences), np.max(percent_differences) NameError: name...
The html version of you book contains an exception where an output is expected: https://allendowney.github.io/ElementsOfDataScience/05_dictionaries.html#punctuation After the paragraph "Here’s what happens when we try to remove the punctuation" ```py ---------------------------------------------------------------------------...