Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed Analyzing Books with Pandas!
You have completed Analyzing Books with Pandas!
Instruction
Intro
Download the Jupyter Notebook here
Goodreads Dataset by Soumik
NumPy
NumPy is short for Numerical Python. In NumPy, you work with arrays similar to a Python list, except they can only hold one type of data. IE: All integers or all floats or all strings. An arrayβs size is immutable. Once the array is created, the size cannot be changed.
>>> np.zeros(10)
array([0., 0., 0., 0., 0., ...