Top "Seaborn" questions

Seaborn is a Python visualization library based on matplotlib.

Remove Seaborn barplot legend title

I use seaborn to plot a grouped bar plot as in https://seaborn.pydata.org/examples/factorplot_bars.html Giving …

python matplotlib bar-chart seaborn
How to change the X axis range in seaborn in python?

By default the seaborn displaces the X axis ranges from -5 to 35 in distplots. But I need to display the …

python seaborn data-science
How to increase the font size of the legend in my Seaborn plot?

I have the following codes to create a Seaborn strip plot. I am having a hard time figuring out how …

python matplotlib legend seaborn
seaborn heatmap y-axis reverse order

Have a look at this heatmap found in the seaborn heatmap documentation. Right now the y-axis starts with 9 at the …

python matplotlib heatmap seaborn
Plotting multiple boxplots in seaborn?

I want to plot boxplots using seaborn in pandas because it is a nicer way to visualize data, but I …

python pandas plot seaborn boxplot
No outlines on bins of Matplotlib histograms or Seaborn distplots

While doing some practice problems using seaborn and a Jupyter notebook, I realized that the distplot() graphs did not have …

python python-3.x matplotlib seaborn
Ordering and Formatting Dates on X-Axis in Seaborn Bar Plot

This seems so simple, but for the life of me I can't figure it out. I am new to Python …

python pandas matplotlib seaborn pythonanywhere
Scatterplot without linear fit in seaborn

I am wondering if there is a way to turn off the linear fit in seaborn's lmplot or if there …

python matplotlib seaborn
What to do with missing values when plotting with seaborn?

I replaced the missing values with NaN using lambda following function: data = data.applymap(lambda x: np.nan if isinstance(…

python python-2.7 pandas data-analysis seaborn
Set Max value for color bar on seaborn heatmap

I need to set the max value on the seaborn heatmap cbar to 2. I've tried: cbar_kws = { 'ticks' : [0, 2] } sns.heatmap(…

python matplotlib heatmap seaborn