
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
How can Seaborn library be used to display a Scatter Plot in Python?
Visualizing data is an important step since it helps understand what is going on in the data without actually looking at the numbers and performing complicated computations. Seaborn is a library that helps in visualizing data.
Scatter plot shows the distribution of data as data points that are spread/scattered on the graph. It uses dots to represents values of a dataset, which are numeric in nature. The position of every dot on the horizontal and vertical axis denotes the value for a single data point.
They help understand the relationship between two variables. Let us understand how this can be achieved using Seaborn library in Python −
Example
import seaborn as sb from matplotlib import pyplot as plt df = sb.load_dataset('iris') sb.jointplot(x = 'petal_length',y = 'petal_width',data = df) plt.show()
Output
Explanation
- The required packages are imported.
- The input data is ‘iris_data’ which is loaded from the scikit learn library.
- This data is stored in a dataframe.
- The ‘load_dataset’ function is used to load the iris data.
- This data is visualized using the ‘jointplot’ function.
- Here, the ‘x’ and ‘y’ axis values are supplied as parameters.
- This scatterplot data is displayed on the console.
- Related Articles
- How can Seaborn library be used to display categorical scatter plots in Python?
- How can Seaborn library be used to display a hexbin plot in Python?
- How can bar plot be used in Seaborn library in Python?
- How can Seaborn library be used to display kernel density estimations in Python?
- How Seaborn library used to display a kernel density estimation plot (joinplot) in Python?
- How can seaborn library be used to display data without the background axis spines in Python?
- How can Seaborn library be used to visualize point plots in Python?
- How can FacetGrid be used to visualize data in Python Seaborn Library?
- How can Bokeh be used to generate scatter plot using Python?
- How can every violin in a violin plot be split in Python Seaborn Library?
- How can the countplot be used to visualize data in Python Seaborn Library?
- How can Matplotlib be used to create three-dimensional scatter plot using Python?
- Create a Scatter Plot with SeaBorn – Python Pandas
- How to avoid the points getting overlapped while using stripplot in categorical scatter plot Seaborn Library in Python?
- How can Bokeh library be used to plot horizontal bar plots using Python?

Advertisements