This workshop introduces to important data science libraries in python: Pandas and Matplotlib with a case study.
You'll examine US Covid-19 data by using tools provided by pandas and matplotlib packages. Kaggle US Counties Covid-19 Dataset
You'll need basic Python knowledge.
You will need Python 3.6+, Jupyter Notebook, pandas and matplotlib packages. To install python packages we'll use the pip. Pip is already installed in Python.
Run $ pip install jupyter notebook
to install Jupyter Notebook.
Run $ pip install pandas
to install pandas.
Run $ pip install matplotlib
to install matplotlib.
After install the Jupyter Notebook:
To open a new notebook:
Run $ jupyter notebook
This workshop aims to show how Python can be used for data science. In this workshop, we will examine the USA Covid-19 data with the tools provided by pandas
and matplotlib
packages.