Top "Seaborn" questions

Seaborn is a Python visualization library based on matplotlib.

Seaborn RegPlot Partially See Through (alpha)

When using seaborn barplot I can specify an alpha for which it makes the bars semi-translucent. However, when I try …

python seaborn
Add minor gridlines to matplotlib plot using seaborn

I'm a fan of the Seaborn package for making nice-looking plots using Matplotlib. But I can't seem to figure out …

python matplotlib seaborn
One colorbar for seaborn heatmaps in subplot

Here is an example that shows a colorbar for each subplot: import seaborn as sns import matplotlib.pyplot as plt …

python matplotlib heatmap seaborn
Remove seaborn lineplot legend title

I would like to remove the title from my seaborn lineplot legend. I tried using this answer to no avail: …

python matplotlib seaborn line-plot
How does one insert statistical annotations (stars or p-values) into matplotlib / seaborn plots?

This seems like a trivial question, but I've been searching for a while and can't seem to find an answer. …

python-3.x matplotlib statistics seaborn
Seaborn: I just want a log scale

I'm using seaborn to plot some biology data. I just want a distribution one gene against another (expression in ~300 patients), …

python pandas data-visualization seaborn
Seaborn Heatmap with logarithmic-scale colorbar

Is there a way to set the color bar scale to log on a seaborn heat map graph? I am …

python pandas seaborn colorbar
How to move legend to outside of a seaborn scatterplot?

import matplotlib.pyplot as plt import seaborn as sns import pandas as pd sns.set(style="darkgrid") g = sns.scatterplot(…

python matplotlib seaborn scatter-plot
How to invert color of seaborn heatmap colorbar

I use an heatmap to visualize a confusion matrix. I like the standard colors, but I would like to have 0…

colors heatmap seaborn
Seaborn - Why import as sns?

Why do you always import seaborn as sns and not with the letters of the name as sbn? Is sns …

python seaborn