Python Data Science Snippets

Jupyter Installation with Conda For other installation methods like brew, pip, etc. .. see jupyter website: installation I’m using miniconda here and install jupyter and also some mandatory libraries like numpy and pandas: conda install jupyter conda install numpy conda install pandas we can now start jupyter by running jupyter lab or jupyter notebook. Let’s parse some movie information from the IMDB, they have put some interesting datasets online here We’re reading in the movie.csv file and do some basic analysis like this: ...

July 8, 2020 · 1 min · 154 words · Micha Kops