Watch the video Intro to Data Analysis / Visualization with Python, Matplotlib and Pandas | Matplotlib Tutorial. Note: you can start at 4:35 as the first few minutes simply consist of the author giving an overview of Matplotlib and walking users through Python installation (which we don’t have to worry about since we are using Kaggle).
Follow along with the author’s code examples in your own Kaggle document. Note that you can import the author’s data directly (without manually downloading and uploading to Kaggle) with the following:
import pandas as pd
sample_data = pd.read_csv('https://www.csdojo.io/s/sample_data.csv')
countries = pd.read_csv('https://www.csdojo.io/s/countries.csv')