Top "Seaborn" questions

Seaborn is a Python visualization library based on matplotlib.

'Could not interpret input' error with Seaborn when plotting groupbys

Say I have this dataframe d = { 'Path' : ['abc', 'abc', 'ghi','ghi', 'jkl','jkl'], 'Detail' : ['foo', 'bar', 'bar','foo','foo','foo'], …

python pandas grouping aggregate seaborn
Seaborn multiple barplots

I have a pandas dataframe that looks like this: class men woman children 0 first 0.91468 0.667971 0.660562 1 second 0.30012 0.329380 0.882608 2 third 0.11899 0.189747 0.121259 How would I create …

python pandas matplotlib seaborn
changing the marker size in python seaborn lmplot

I am trying to change the size of the lmplot markers in seaborn. I have tried passing 's' or 'size' …

python seaborn
How to make a scatter plot for clustering in Python

I am carrying out clustering and try to plot the result. A dummy data set is : data import numpy as …

python matplotlib seaborn python-ggplot
Plot CDF + cumulative histogram using Seaborn Python

Is there a way to plot the CDF + cumulative histogram of a Pandas Series in Python using Seaborn only? I …

python pandas seaborn
Second y-axis time series seaborn

Using the data frame df = pd.DataFrame({ "date" : ["2018-01-01", "2018-01-02", "2018-01-03", "2018-01-04"], "column1" : [555,525,532,585], "column2" : [50,48,49,51] }) one can …

python seaborn
What is y axis in seaborn distplot?

I have some geometrically distributed data. When I want to take a look at it, I use sns.distplot(data, …

python matplotlib seaborn
How to have clusters of stacked bars with python (Pandas)

So here is how my data set looks like : In [1]: df1=pd.DataFrame(np.random.rand(4,2),index=["A","B","C","…

python pandas matplotlib plot seaborn
Tweaking seaborn.boxplot

I would like to compare a set of distributions of scores (score), grouped by some categories (centrality) and colored by …

python matplotlib plot boxplot seaborn
How to plot multiple Seaborn Jointplot in Subplot

I'm having problem placing Seaborn Jointplot inside a multicolumn subplot. import pandas as pd import seaborn as sns df = pd.…

python python-3.x pandas matplotlib seaborn