Top "Seaborn" questions

Seaborn is a Python visualization library based on matplotlib.

Change the height of a Seaborn heatmap colorbar

I have the following Python code to create a heatmap using the Seaborn package: f, ax = plt.subplots(figsize=(21,5)) heatmap = …

python matplotlib heatmap seaborn colorbar
How to fill area under line plot in seaborn

I want to fill the area under a line plot so it looks as the picture below: instead of built …

python visualization seaborn line-plot
Is there a way to make Seaborn or Vincent interactive?

I've been trying to find a way to make Seaborn and Vincent interactive so that I can, for example, zoom …

python pandas time-series seaborn vincent
How to give sns.clustermap a precomputed distance matrix?

Usually when I do dendrograms and heatmaps, I use a distance matrix and do a bunch of SciPy stuff. I …

python matplotlib heatmap seaborn hierarchical-clustering
How to change the positions of subplot titles and axis labels in Seaborn FacetGrid?

I am trying to plot a polar plot using Seaborn's facetGrid, similar to what is detailed on seaborn's gallery I …

python matplotlib plot seaborn polar-coordinates
set axis limits on individual facets of seaborn facetgrid

I'm trying to set the x-axis limits to different values for each facet a Seaborn facetgrid distplot. I understand that …

python facet seaborn
How to do waffle charts in python? (square piechart)

Something like this: There is a very good package to do it in R. In python, the best that I …

python matplotlib seaborn bokeh waffle-chart
what is major difference between histogram,countplot and distplot in Seaborn library?

I think they all look the same but there must be some difference. They all take a single column as …

python matplotlib visualization seaborn data-analysis
Lines to separate groups in seaborn heatmap

I am plotting data as a Seaborn heatmap in Python. My data is intrinsically grouped into categories, and I'd like …

python matplotlib heatmap seaborn
Side-by-side boxplot of multiple columns of a pandas DataFrame

One year of sample data: import pandas as pd import numpy.random as rnd import seaborn as sns n = 365 df = …

python pandas plot seaborn boxplot