Plotting Data 2: Bivariate Plots
This lesson will describe the process of plotting bivariate plots of the data from a csv file in Python.
We'll cover the following...
Bivariate plots
Bivariate plots are plots that aim to graph the relationship between two variables. These plots can help us establish relationships and patterns in the data. Some common bivariate plots are:
- scatter plots
- bar plots
- histograms
Let’s look at some of these plots and how we can plot them using Pandas and matplotlib. We will be using Sample Sales Data. The data is in sales_data_sample.csv file. Have a look at the data.
Bivariate plots with dataframe.plot
In Pandas, we only need to use the plot
function with the dataframe to plot bivariate plots. The ...
Access this course and 1400+ top-rated courses and projects.