Top "Seaborn" questions

Seaborn is a Python visualization library based on matplotlib.

Seaborn: annotate the linear regression equation

I tried fitting an OLS for Boston data set. My graph looks like below. How to annotate the linear regression …

python python-3.x matplotlib linear-regression seaborn
Seaborn boxplot + stripplot: duplicate legend

One of the coolest things you can easily make in seaborn is boxplot + stripplot combination: import matplotlib.pyplot as plt …

python matplotlib legend seaborn
How to Change Figure Plot Size using Seaborn Package FacetGrid

%pylab inline import pandas as pd import numpy as np import matplotlib as mpl import seaborn as sns typessns = pd.…

python matplotlib plot seaborn figure
How to plot two violin plot series on the same graph using seaborn?

Looking at the documentation about violon plots with seaborn, I would like to know how to plot two series of …

python matplotlib seaborn violin-plot
seaborn cycle through colours with matplotlib scatter

How can I get seaborn colors when doing a scatter plot? import matplotlib.pyplot as plt import seaborn as sns …

python matplotlib seaborn
how to change spot edge colors in seaborn scatter plots?

I have created a scatter plot using seaborn: import seaborn as sns sns.set(style="ticks", color_codes=True) g=…

python seaborn scatter-plot
How to express classes on the axis of a heatmap in Seaborn

I created a very simple heatmap chart with Seaborn displaying a similarity square matrix. Here is the one line of …

python matplotlib heatmap seaborn
Change tick size on colorbar of seaborn heatmap

I want to increase the tick label size corresponding to the colorbar in a heatmap plot created using the seaborn …

python heatmap colorbar seaborn
seaborn multiple variables group bar plot

I have pandas dataframe, one index(datetime) and three variables(int) date A B C 2017-09-05 25 261 31 2017-09-06 261 1519 151 2017-09…

pandas matplotlib seaborn data-analysis
log-log plot with seaborn jointgrid

I'm trying to create a loglog plot with a KDE and histogram associated with each axis using a seaborn JointGrid …

matplotlib seaborn loglog