Connected Scatterplot

A connected scatterplot is a line chart where each data point is shown by a circle or any type of marker. This section explains how to build a connected scatterplot with Python, using both the Matplotlib and the Seaborn libraries.
⏱ Quick start
Building a connected scatterplot with Python and Matplotlib is a breeze thanks to the plot() function. The 2 first argumenst are the X and Y values respectively, which can be stored in a pandas data frame.
The linestyle and marker arguments allow to use line and circles to make it look like a connected scatterplot. It means everything is very close to a line chart or a scatterplot that are extensively described in the gallery.