...
/Continuous vs. Continuous Bivariate Analysis: Scatter and Bubble
Continuous vs. Continuous Bivariate Analysis: Scatter and Bubble
Learn how to analyze and visualize two continuous variables together.
Continuous vs. continuous variables
In this lesson, we explore how to visualize continuous variables together. In doing so, we will explore bivariate and basic multivariate analysis through scatter plots and bubble charts.
We’ve seen a multitude of ways in which we can analyze a categorical variable with a continuous variable. In this section, we will learn to analyze continuous variables together. For the first few examples, we will look at some global health data in the year 2018.
# Import librariesimport pandas as pd# Import datasethealth = pd.read_csv('/usr/local/csvfiles/health.csv')# Show datasetprint(health.head())
Scatter plot
Here we discuss the concept of a scatter plot and when we should plot one (or more than one).
A scatter plot is used when we wish to get an insight into the relationship between two variables and ...