Blog Post 0
Creating Data Visualizations
Step 1: Importing tools and data
Before we can begin creating data visualizations in python, we should first import the tools we need, as well as read in the dataset. To do so, we first import pandas, a tool that allows for data analysis and manipulation. Then, we import the data that we would like to create visualizations with and read it with read_csv, which is part of pandas. We will also import numpy and matplotlib, which are needed for creating graphs.