Top "Seaborn" questions

Seaborn is a Python visualization library based on matplotlib.

How do I change the figure size for a seaborn plot?

How do I change the size of my image so it's suitable for printing? For example, I'd like to use …

python seaborn
Label axes on Seaborn Barplot

I'm trying to use my own labels for a Seaborn barplot with the following code: import pandas as pd import …

python matplotlib seaborn
How to save a Seaborn plot into a file

I tried the following code (test_seaborn.py): import matplotlib matplotlib.use('Agg') import matplotlib.pyplot as plt matplotlib.style.…

python pandas matplotlib seaborn
Seaborn plots not showing up

I'm sure I'm forgetting something very simple, but I cannot get certain plots to work with Seaborn. If I do: …

python matplotlib seaborn
How to add title to seaborn boxplot

Seems pretty Googleable but haven't been able to find something online that works. I've tried both sns.boxplot('Day', 'Count', …

pandas matplotlib seaborn
Rotate label text in seaborn factorplot

I have a simple factorplot import seaborn as sns g = sns.factorplot("name", "miss_ratio", "policy", dodge=.2, linestyles=["none", "none", "…

matplotlib seaborn
How to set some xlim and ylim in Seaborn lmplot facetgrid

I'm using Seaborn's lmplot to plot a linear regression, dividing my dataset into two groups with a categorical variable. For …

python pandas seaborn
Make the size of a heatmap bigger with seaborn

I create a heatmap with seaborn df1.index = pd.to_datetime(df1.index) df1 = df1.set_index('TIMESTAMP') df1 = df1.…

python heatmap seaborn
How can I change the font size using seaborn FacetGrid?

I have plotted my data with factorplot in seaborn and get facetgrid object, but still cannot understand how the following …

python seaborn
Edit seaborn legend

Using a data frame and this code in Python, I was able to create a plot: g = sns.lmplot('credibility', …

python matplotlib legend seaborn