VOOZH about

URL: https://www.geeksforgeeks.org/python/make-violinplot-with-data-points-using-seaborn/

⇱ Make Violinplot with data points using Seaborn - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Make Violinplot with data points using Seaborn

Last Updated : 23 Jul, 2025

A violin plot plays a similar activity that is pursued through whisker or box plot do. As it shows several quantitative data across one or more categorical variables. It can be an effective and attractive way to show multiple data at several units. A β€œwide-form” Data Frame helps to maintain each numeric column which can be plotted on the graph. It is possible to use NumPy or Python objects, but pandas objects are preferable because the associated names will be used to annotate the axes.

In this article, we will see how to make Violinplot and plot data points.

Method 1#: Using Inner attributes of violinplot

Example 1: Creating violinplot and use inner attributes. Inner Representation of the datapoints in the violin interior, If point or stick, show each underlying datapoint.

Syntax: seaborn.violinplot( x, y, data, inner = "points")

Output:

πŸ‘ Image

Example 2:

We see the above implementation, let's do the same thing for the "stick". This option show data as lines on violin plot.

Output:

πŸ‘ Image

Example 3: 

Using quartile draw the quartiles of the distribution.

Output:

πŸ‘ Image

Method 2#: Using swarmplot().

Using swarmplot we can show the data point inside in a violinplot.

Output:

πŸ‘ Image

Comment