Top "Seaborn" questions

Seaborn is a Python visualization library based on matplotlib.

How To Plot Multiple Histograms On Same Plot With Seaborn

With matplotlib, I can make a histogram with two datasets on one plot (one next to the other, not overlay). …

python matplotlib seaborn
How to change a figure's size in Python Seaborn package

I'm having trouble increasing the size of my plot figures using Seaborn (imported as sns). I'm using sns.pairplot to …

python plot seaborn
Unable to show legend in seaborn distplot

I am new to plotting in python and trying following code to plot distribution in seaborn but unable to see …

python matplotlib legend seaborn
How do I add a title to Seaborn Heatmap?

I want to add a title to a seaborn heatmap. Using Pandas and iPython Notebook code is below, a1_p = …

python pandas ipython-notebook seaborn
How do I create a multiline plot using seaborn?

I am trying out Seaborn to make my plot visually better than matplotlib. I have a dataset which has a …

python python-3.x dataframe plot seaborn
Boxplot of Multiple Columns of a Pandas Dataframe on the Same Figure (seaborn)

I feel I am probably not thinking of something obvious. I want to put in the same figure, the box …

python pandas seaborn
How to get rid of grid lines when plotting with Seaborn + Pandas with secondary_y

I'm plotting two data series with Pandas with seaborn imported. Ideally I would like the horizontal grid lines shared between …

python matplotlib pandas plot seaborn
Log-log lmplot with seaborn

Can the function lmplot from Seaborn plot on a log-log scale? This is lmplot on a normal scale import numpy …

python seaborn
How to plot 2 seaborn lmplots side-by-side?

Plotting 2 distplots or scatterplots in a subplot works great: import matplotlib.pyplot as plt import numpy as np import seaborn …

python matplotlib ipython seaborn
How to prevent overlapping x-axis labels in sns.countplot

For the plot sns.countplot(x="HostRamSize",data=df) I got the following graph with x-axis label mixing together, how …

python pandas matplotlib seaborn