Top "Seaborn" questions

Seaborn is a Python visualization library based on matplotlib.

How to scale Seaborn's y-axis with a bar plot?

I'm using factorplot(kind="bar"). How do I scale the y-axis, for example with log-scale? I tried tinkering with the …

python seaborn
Draw a line at specific position/annotate a Facetgrid in seaborn

A have produced a boxplot with Facetgrid in seaborn the following way # Import the dataset tips = sns.load_dataset("tips") # …

python seaborn facet-grid
Seaborn: How to add vertical lines to a distribution plot (sns.distplot)

Using the examples from seaborn.pydata.org and the Python DataScience Handbook, I'm able to produce a combined distribution plot …

python matplotlib plot seaborn
How do I align gridlines for two y-axis scales using Matplotlib?

I'm plotting two datasets with different units on the y-axis. Is there a way to make the ticks and gridlines …

python matplotlib plot seaborn
How to plot dates on the x-axis using Seaborn (or matplotlib)

I have a csv file with some time series data. I create a Data Frame as such: df = pd.read_…

python matplotlib seaborn timeserieschart
matplotlib: Plot Feature Importance with feature names

In R there are pre-built functions to plot feature importance of Random Forest model. But in python such method seems …

python matplotlib random-forest seaborn
Custom Annotation Seaborn Heatmap

I'm using Seaborn in Python to create a Heatmap. I'm able to annotate the cells with the values passed in, …

python heatmap seaborn
How to make Pareto Chart in python?

Pareto is very popular diagarm in Excel and Tableu. In excel we can easily draw a Pareto diagram but I …

python pandas matplotlib seaborn pareto-chart
Seaborn countplot with normalized y axis per group

I was wondering if it is possible to create a Seaborn count plot, but instead of actual counts on the …

python pandas seaborn
matplotlib/seaborn: first and last row cut in half of heatmap plot

When plotting heatmaps with seaborn (and correlation matrices with matplotlib) the first and the last row is cut in halve. …

python matplotlib seaborn